00001 // ************************************************************** 00002 // Com ++ Framework by the C++ World 00003 // Please report defects: mailto:compp@cplusplusworld.com 00004 // Please visit: http://www.cplusplusworld.com/socketlibrary.html 00005 // ************************************************************** 00006 00007 #include "ComPlusPlus/SSrvContext.h" 00008 00009 compp::SSrvContext::SSrvContext() { 00010 00011 IsAuthenticated = false; 00012 ContextString = ""; 00013 00014 } 00015 00016 compp::SSrvContext::~SSrvContext() { 00017 } 00018 00019 void compp::SSrvContext::SetAuth ( const bool auth ) { 00020 IsAuthenticated = auth; 00021 } 00022 00023 bool compp::SSrvContext::IsAuth ( ) { 00024 return IsAuthenticated; 00025 } 00026 00027
1.6.3