Added basic rest framework

This commit is contained in:
Leon Etienne (ubuntu wsl)
2020-09-24 14:31:30 +02:00
parent 918b735922
commit 595e04bc32
20 changed files with 429 additions and 318 deletions

View File

@@ -2,6 +2,7 @@
#include "Logger.h"
#include "LogHistory.h"
#include "RestInterface.h"
#include "XGControl.h"
class Framework
{
@@ -9,18 +10,17 @@ public:
Framework();
~Framework();
void Run();
private:
void Run();
void PostInit();
void OnExit();
void PreInit();
void PostExit();
RestInterface* restInterface;
Rest::RestInterface* restInterface;
Log* log;
Logging::Logger* log;
bool isRunning = true;
};