diff options
Diffstat (limited to 'src/components/ble/MusicService.h')
| -rw-r--r-- | src/components/ble/MusicService.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/components/ble/MusicService.h b/src/components/ble/MusicService.h index 6aebc3c5..93d94a34 100644 --- a/src/components/ble/MusicService.h +++ b/src/components/ble/MusicService.h @@ -25,16 +25,15 @@ #include <host/ble_uuid.h> #undef max #undef min +#include <FreeRTOS.h> namespace Pinetime { - namespace System { - class SystemTask; - } - namespace Controllers { + class NimbleController; + class MusicService { public: - explicit MusicService(Pinetime::System::SystemTask& system); + explicit MusicService(NimbleController& nimble); void Init(); @@ -89,7 +88,7 @@ namespace Pinetime { bool repeat {false}; bool shuffle {false}; - Pinetime::System::SystemTask& m_system; + NimbleController& nimble; }; } } |
