update domo

This commit is contained in:
NADAL Jean-Baptiste
2019-11-14 15:15:31 +01:00
parent ab4a18f685
commit e5bd19f12d
14 changed files with 298 additions and 134 deletions

View File

@@ -28,8 +28,13 @@
/*------------------------------- INCLUDES ----------------------------------*/
#include <cstring>
/*---------------------------------- Deps -----------------------------------*/
class CivetServer;
struct event_base;
/*--------------------------------- CLASS ----------------------------------*/
class WebServer
@@ -38,7 +43,10 @@ public:
WebServer(void);
~WebServer(void);
int setup(const char *a_document_root, const char *a_port, struct event_base *an_evt_loop);
private:
CivetServer *m_server;
};
#endif /* __WEB_SERVER_H */