diff options
| author | Loic Guegan <manzerbredes@mailbox.org> | 2022-02-12 19:13:34 +0100 |
|---|---|---|
| committer | Loic Guegan <manzerbredes@mailbox.org> | 2022-02-12 19:13:34 +0100 |
| commit | a359219e33fdf3afb5ddfbb084563054a947b106 (patch) | |
| tree | 91dab9c21321f73152993183cd6e8cf4a04017f8 /src/components/Margin.hpp | |
Create project
Diffstat (limited to 'src/components/Margin.hpp')
| -rw-r--r-- | src/components/Margin.hpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/components/Margin.hpp b/src/components/Margin.hpp new file mode 100644 index 0000000..8c2f243 --- /dev/null +++ b/src/components/Margin.hpp @@ -0,0 +1,12 @@ +#include "Component.hpp" + +namespace cgeditor { +class Margin : public Component { + +public: + Margin(Status *s); + void Refresh(); + void DrawMargin(Element e); + void DrawMargin(std::vector<Element> elts); +}; +} // namespace cgeditor
\ No newline at end of file |
