Intermediate status

This commit is contained in:
Leon Etienne (ubuntu wsl)
2020-09-24 01:16:44 +02:00
parent d388480740
commit 918b735922
22 changed files with 29135 additions and 0 deletions

27
Tubio/Framework.h Normal file
View File

@@ -0,0 +1,27 @@
#pragma once
#include "Logger.h"
#include "LogHistory.h"
#include "RestInterface.h"
class Framework
{
public:
Framework();
~Framework();
void Run();
private:
void PostInit();
void OnExit();
void PreInit();
void PostExit();
RestInterface* restInterface;
Log* log;
bool isRunning = true;
};