#include "System.h" System::System(std::shared_ptr boardConfig, std::shared_ptr userConfig) : _boardConfig(boardConfig), _userConfig(userConfig) { } System::~System() { } std::shared_ptr System::getBoardConfig() const { return _boardConfig; } std::shared_ptr System::getUserConfig() const { return _userConfig; } TaskManager &System::getTaskManager() { return _taskManager; } Display &System::getDisplay() { return _display; }