#ifndef __HTTPSERVER_HPP_ #define __HTTPSERVER_HPP_ #include #include "UtilBase.hpp" #include "Util/logger.h" using namespace std; using namespace toolkit; // TODO namespace gsd{ class HttpServer: public ModuleBase { private: HttpServer(): ModuleBase(){ InfoL; } public: ~HttpServer(){} }; } #endif