Refactoring of player management and integration with the main window rendering

This commit is contained in:
Sylvain Schneider
2026-07-27 23:49:09 +02:00
parent cbe165aa85
commit ee6981bda3
34 changed files with 1122 additions and 181 deletions

View File

@@ -7,11 +7,12 @@ using namespace std;
//--------------------------------------------------------------
/* Default constructor */
AppContext::AppContext()
: logger(eventBus)
{
// Create an instance of the Track
m_hTrack = make_unique<Track>();
// Create an instance of the HTTP server
m_hServer = make_unique<HttpServer>();
// Create an instance of the Player
player = make_unique<player::Player>(eventBus);
}
//--------------------------------------------------------------