diff options
| author | jacqueline <me@jacqueline.id.au> | 2023-07-04 14:39:22 +1000 |
|---|---|---|
| committer | jacqueline <me@jacqueline.id.au> | 2023-07-04 14:39:22 +1000 |
| commit | 191441ebe2ecc654fee7d9cbfc536df4212117c8 (patch) | |
| tree | 0e580f4738358ccd079fb66441b71e4a4093bf8a /src/ui/include/screen_playing.hpp | |
| parent | 80170642ea1d8bfc9703af217993ae29e6ee81d6 (diff) | |
| download | tangara-fw-191441ebe2ecc654fee7d9cbfc536df4212117c8.tar.gz | |
Add missing files >.<
Diffstat (limited to 'src/ui/include/screen_playing.hpp')
| -rw-r--r-- | src/ui/include/screen_playing.hpp | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/ui/include/screen_playing.hpp b/src/ui/include/screen_playing.hpp new file mode 100644 index 00000000..cf1ddaa2 --- /dev/null +++ b/src/ui/include/screen_playing.hpp @@ -0,0 +1,29 @@ +/* + * Copyright 2023 jacqueline <me@jacqueline.id.au> + * + * SPDX-License-Identifier: GPL-3.0-only + */ + +#pragma once + +#include <memory> + +#include "lvgl.h" + +#include "database.hpp" +#include "screen.hpp" + +namespace ui { +namespace screens { + +class Playing : public Screen { + public: + explicit Playing(database::Track t); + ~Playing(); + + private: + database::Track track_; +}; + +} // namespace screens +} // namespace ui |
