1
mirror of https://github.com/flipperdevices/flipperzero-firmware.git synced 2025-12-12 04:41:26 +04:00
Files
flipperzero-firmware/lib/app-scened-template/view_modules/generic_view_module.h

11 lines
202 B
C
Raw Normal View History

#pragma once
#include <gui/view.h>
class GenericViewModule {
public:
GenericViewModule() {};
virtual ~GenericViewModule() {};
virtual View* get_view() = 0;
virtual void clean() = 0;
};