code integration
This commit is contained in:
17
src/core/appContext.cpp
Normal file
17
src/core/appContext.cpp
Normal file
@@ -0,0 +1,17 @@
|
||||
#include "appContext.h"
|
||||
|
||||
#include "HttpServer/HttpServer.h"
|
||||
#include "Track/Track.h"
|
||||
|
||||
using namespace std;
|
||||
//--------------------------------------------------------------
|
||||
/* Default constructor */
|
||||
AppContext::AppContext()
|
||||
{
|
||||
// Create an instance of the Track
|
||||
m_hTrack = make_unique<Track>();
|
||||
|
||||
// Create an instance of the HTTP server
|
||||
m_hServer = make_unique<HttpServer>();
|
||||
}
|
||||
//--------------------------------------------------------------
|
||||
Reference in New Issue
Block a user