Logo
~Sockets~
~Examples~
~Contact~


AdminSocket.h

Go 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
Page, code, and content Copyright (C) 2006 by Anders Hedström
Generated on Mon Aug 29 20:21:47 2005 for C++ Sockets by  doxygen 1.4.4