00001 /* **************************************************************** 00002 **************************************************************** 00003 * Com++ Professional (c) 2009 C++ World 00004 * http://www.cplusplusworld.com/ mailto:compp@cplusplusworld.com 00005 **************************************************************** 00006 **************************************************************** 00007 */ 00008 00009 #ifndef _SSRVCONTEXTH 00010 #define _SSRVCONTEXTH 00011 00012 #include <string> 00013 #include "Context.h" 00014 00015 namespace compp { 00016 00017 class SSrvContext : public Context { 00018 00019 00020 public: 00021 00022 SSrvContext() ; 00023 virtual ~SSrvContext() ; 00024 00025 void SetAuth ( const bool auth ); 00026 bool IsAuth ( ) ; 00027 00028 00029 protected: 00030 00031 00032 }; 00033 } 00034 00035 #endif 00036 00037
1.6.3