mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2025-12-12 04:34:43 +04:00
* toolchain: v36 * toolchain: fixed cert path; lib: nanopb: updated to 0.4.8 * fbtenv: rolled back cert path for 3.11 * clang-format: updated config for v18 * linter fixes * clang-format: properly regenerated config (`clang-format -style=file:.clang-format -dump-config > .clang-format-new; mv .clang-format-new .clang-format`) * clang-format: AllowShortLoopsOnASingleLine: false * toolchain: v37 * fbt: compilation_db.py: fixes for Windows
11 lines
202 B
C++
11 lines
202 B
C++
#pragma once
|
|
#include <gui/view.h>
|
|
|
|
class GenericViewModule {
|
|
public:
|
|
GenericViewModule() {};
|
|
virtual ~GenericViewModule() {};
|
|
virtual View* get_view() = 0;
|
|
virtual void clean() = 0;
|
|
};
|