You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
536 B
C++
27 lines
536 B
C++
#ifndef NEWRESTAPI_RESTSERVER_HPP
|
|
#define NEWRESTAPI_RESTSERVER_HPP
|
|
|
|
#include <string>
|
|
#include <unordered_map>
|
|
#include "MasterServer.hpp"
|
|
#include "SimpleWeb/http_server.hpp"
|
|
|
|
typedef SimpleWeb::Server<SimpleWeb::HTTP> HttpServer;
|
|
|
|
class RestServer
|
|
{
|
|
public:
|
|
RestServer(unsigned short port, MasterServer::ServerMap *pMap);
|
|
void start();
|
|
void stop();
|
|
void cacheUpdated();
|
|
|
|
private:
|
|
HttpServer httpServer;
|
|
MasterServer::ServerMap *serverMap;
|
|
bool updatedCache = true;
|
|
};
|
|
|
|
|
|
#endif //NEWRESTAPI_RESTSERVER_HPP
|