WIP: adding service files, still not working

This commit is contained in:
emeric
2014-04-03 09:19:35 +02:00
parent 10d1464ca2
commit 886b3221f5
24 changed files with 476 additions and 102 deletions
+24
View File
@@ -0,0 +1,24 @@
#ifndef WEB_SERVER_SERVICE_HPP
#define WEB_SERVER_SERVICE_HPP
#include <Wt/WServer>
#include "Service.hpp"
class WebServerService : public Service
{
public:
WebServerService( int argc, char* argv[]);
void start(void);
void stop(void);
void restart(void);
private:
Wt::WServer _server;
};
#endif