code integration

This commit is contained in:
Sylvain Schneider
2026-07-04 21:17:38 +02:00
parent 8329318677
commit 888765ef6b
64 changed files with 52755 additions and 1 deletions

17
src/core/appContext.cpp Normal file
View 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>();
}
//--------------------------------------------------------------