// // TCP Daemon // /* prevent multiple inclusions */ #ifndef __UdpDaemon__ #define __UdpDaemon__ /* includes *****************************************************************/ #include "Daemon.h" #include "UdpServer.h" /* defines ******************************************************************/ /* macros *******************************************************************/ /* structs & typedefs *******************************************************/ /* c class definitions ******************************************************/ class UdpDaemon : public UdpServer, public Daemon { // public data public: // protected data protected: // private data private: // static data // public methods public: // constructors UdpDaemon(); // destructor virtual ~UdpDaemon(); // public methods int StartService(const char *n,const char *h,const char *p,int d=0,int c=0); int RunService(void); // static methods // private methods private: }; #endif