aboutsummaryrefslogtreecommitdiffstats
path: root/editor.h
diff options
context:
space:
mode:
authorJan Tuomi <jan-sebastian.tuomi@aalto.fi>2016-10-09 12:37:24 +0300
committerJan Tuomi <jan-sebastian.tuomi@aalto.fi>2016-10-09 14:50:24 +0300
commit88996781bd89825501ae18a1ce6e7744e767db86 (patch)
tree93807aa846be32728c6bb2c553971a669370a5cf /editor.h
parent3461d6dfc348b1814376669518f2dcbb114ab9c8 (diff)
Add editor class
Diffstat (limited to 'editor.h')
-rw-r--r--editor.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/editor.h b/editor.h
new file mode 100644
index 0000000..491c3fb
--- /dev/null
+++ b/editor.h
@@ -0,0 +1,14 @@
+#ifndef EDITOR_H
+#define EDITOR_H
+#include <string>
+#include <iostream>
+
+class Editor {
+ public:
+ Editor(std::string* contents);
+ int run_editor();
+ private:
+ std::string* m_contents;
+};
+
+#endif