// Host Update // // Douglas Thrift // // $Id$ #ifndef _HostUpdate_hpp_ #define _HostUpdate_hpp_ #include #include #include #include #ifndef _WIN32 #include #else #include #endif using namespace std; using namespace cgicc; class HostUpdate { private: Cgicc cgi; void update(CgiEnvironment& env, const string& agent); void display(CgiEnvironment& env); public: HostUpdate(); ~HostUpdate(); }; #endif // _HostUpdate_hpp_