diff options
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 |
