mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-18 00:33:09 +00:00
f4cc9e5de7
if author want their plugin to be removed - create issue, thanks
17 lines
414 B
C++
17 lines
414 B
C++
#pragma once
|
|
#include <view_modules/generic_view_module.h>
|
|
|
|
class ContainerVM : public GenericViewModule {
|
|
public:
|
|
ContainerVM();
|
|
~ContainerVM() final;
|
|
View* get_view() final;
|
|
void clean() final;
|
|
|
|
template <typename T> T* add();
|
|
|
|
private:
|
|
View* view;
|
|
static void view_draw_callback(Canvas* canvas, void* model);
|
|
static bool view_input_callback(InputEvent* event, void* context);
|
|
};
|