![]() |
AdminSocket.hGo to the documentation of this file.00001 #ifndef _ADMINSOCKET_H 00002 #define _ADMINSOCKET_H 00003 00004 #include <HttpdSocket.h> 00005 00006 00007 class AdminSocket : public HttpdSocket 00008 { 00009 public: 00010 AdminSocket(ISocketHandler&); 00011 ~AdminSocket(); 00012 00013 void Exec(); 00014 00015 private: 00016 AdminSocket(const AdminSocket& s) : HttpdSocket(s) {} // copy constructor 00017 AdminSocket& operator=(const AdminSocket& ) { return *this; } // assignment operator 00018 00019 }; 00020 00021 00022 00023 00024 #endif // _ADMINSOCKET_H |