00001 #ifndef KEEPALIVE_CLIENT_H 00002 #define KEEPALIVE_CLIENT_H 00003 00004 #include "clientbase.h" 00005 00006 namespace Keepalive 00007 { 00008 00009 class Client : public ClientBase 00010 { 00011 public: 00012 Client(const char *host, int port); 00013 ~Client(); 00014 00015 private: 00016 void commandline(int mode, int fd); 00017 }; 00018 00019 }; 00020 00021 #endif 00022