HttpServer.hpp 378 B

123456789101112131415161718192021222324252627282930313233
  1. #ifndef __HTTPSERVER_HPP_
  2. #define __HTTPSERVER_HPP_
  3. #include <iostream>
  4. #include "UtilBase.hpp"
  5. #include "Util/logger.h"
  6. using namespace std;
  7. using namespace toolkit;
  8. // TODO
  9. namespace gsd{
  10. class HttpServer: public ModuleBase
  11. {
  12. private:
  13. HttpServer(): ModuleBase(){
  14. InfoL;
  15. }
  16. public:
  17. ~HttpServer(){}
  18. };
  19. }
  20. #endif