aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ble/MusicService.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/ble/MusicService.h')
-rw-r--r--src/components/ble/MusicService.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/components/ble/MusicService.h b/src/components/ble/MusicService.h
index 6aebc3c5..f4b902fe 100644
--- a/src/components/ble/MusicService.h
+++ b/src/components/ble/MusicService.h
@@ -27,14 +27,12 @@
#undef min
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 +87,7 @@ namespace Pinetime {
bool repeat {false};
bool shuffle {false};
- Pinetime::System::SystemTask& m_system;
+ NimbleController& nimble;
};
}
}