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