From 191441ebe2ecc654fee7d9cbfc536df4212117c8 Mon Sep 17 00:00:00 2001 From: jacqueline Date: Tue, 4 Jul 2023 14:39:22 +1000 Subject: Add missing files >.< --- src/ui/include/screen_playing.hpp | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 src/ui/include/screen_playing.hpp (limited to 'src/ui/include/screen_playing.hpp') 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 + * + * SPDX-License-Identifier: GPL-3.0-only + */ + +#pragma once + +#include + +#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 -- cgit v1.2.3