diff options
| author | Jan Tuomi <jan-sebastian.tuomi@aalto.fi> | 2016-10-09 12:37:24 +0300 |
|---|---|---|
| committer | Jan Tuomi <jan-sebastian.tuomi@aalto.fi> | 2016-10-09 14:50:24 +0300 |
| commit | 88996781bd89825501ae18a1ce6e7744e767db86 (patch) | |
| tree | 93807aa846be32728c6bb2c553971a669370a5cf /editor.cpp | |
| parent | 3461d6dfc348b1814376669518f2dcbb114ab9c8 (diff) | |
Add editor class
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; +} |
