diff options
| author | jacqueline <me@jacqueline.id.au> | 2022-12-07 15:36:47 +1100 |
|---|---|---|
| committer | jacqueline <me@jacqueline.id.au> | 2022-12-07 15:36:47 +1100 |
| commit | 01be69eca1fa89c047fc29f5cb0ea8ba0898dad1 (patch) | |
| tree | d40f749b3ebf6327f13d51d585f7c315a6d864c3 /src/main/app_console.hpp | |
| parent | f35bb64c2b8dbb72fd15f1880e4d01d263660910 (diff) | |
| download | tangara-fw-01be69eca1fa89c047fc29f5cb0ea8ba0898dad1.tar.gz | |
better handling of chunk buffer
Diffstat (limited to 'src/main/app_console.hpp')
| -rw-r--r-- | src/main/app_console.hpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/main/app_console.hpp b/src/main/app_console.hpp index 155d8127..f94bcb51 100644 --- a/src/main/app_console.hpp +++ b/src/main/app_console.hpp @@ -2,6 +2,7 @@ #include <memory> +#include "audio_playback.hpp" #include "console.hpp" #include "storage.hpp" @@ -9,8 +10,10 @@ namespace console { class AppConsole : public Console { public: - AppConsole() {} - virtual ~AppConsole() {} + explicit AppConsole(audio::AudioPlayback* playback); + virtual ~AppConsole(); + + audio::AudioPlayback* playback_; protected: virtual auto RegisterExtraComponents() -> void; |
