mirror of
https://github.com/flipperdevices/flipperzero-firmware.git
synced 2025-12-12 12:51:22 +04:00
10 lines
199 B
C
10 lines
199 B
C
|
|
#pragma once
|
||
|
|
#include <gui/view.h>
|
||
|
|
|
||
|
|
class GenericViewModule {
|
||
|
|
public:
|
||
|
|
GenericViewModule(){};
|
||
|
|
virtual ~GenericViewModule(){};
|
||
|
|
virtual View* get_view() = 0;
|
||
|
|
virtual void clean() = 0;
|
||
|
|
};
|