#include "System.h" System::System(BoardConfig const *const boardConfig, std::shared_ptr userConfig) : _boardConfig(boardConfig), _userConfig(userConfig), _isWifiEthConnected(false) { } System::~System() { } BoardConfig const *const System::getBoardConfig() const { return _boardConfig; } std::shared_ptr System::getUserConfig() const { return _userConfig; } TaskManager &System::getTaskManager() { return _taskManager; } Display &System::getDisplay() { return _display; } bool System::isWifiEthConnected() const { return _isWifiEthConnected; } void System::connectedViaWifiEth(bool status) { _isWifiEthConnected = status; }