Added basic rest framework
This commit is contained in:
@@ -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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user