Intermediate status
This commit is contained in:
27
Tubio/Framework.h
Normal file
27
Tubio/Framework.h
Normal 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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user