Tubio/Tubio/Framework.h
Leon Etienne (ubuntu wsl) feb2d92e38 Added autosave to loghistory
2020-09-27 13:59:13 +02:00

31 lines
495 B
C++

#pragma once
#include "Logger.h"
#include "LogHistory.h"
#include "HttpServer.h"
#include "DownloadManager.h"
#include "ConsoleManager.h"
#include "XGControl.h"
#include "XGConfig.h"
class Framework
{
public:
Framework();
~Framework();
void Run();
private:
void PreInit();
void PostInit();
void Update();
void OnExit();
void PostExit();
Rest::HttpServer* httpServer;
Logging::Logger* log;
bool isRunning = true;
};