aboutsummaryrefslogtreecommitdiff
path: root/src/components/Margin.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Margin.hpp')
-rw-r--r--src/components/Margin.hpp12
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