diff options
Diffstat (limited to 'editor.cpp')
| -rw-r--r-- | editor.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/editor.cpp b/editor.cpp new file mode 100644 index 0000000..b7ed487 --- /dev/null +++ b/editor.cpp @@ -0,0 +1,9 @@ +#include "editor.h" + +Editor::Editor(std::string* contents) { + m_contents = contents; +} + +int Editor::run_editor() { + return 0; +} |
