From 88996781bd89825501ae18a1ce6e7744e767db86 Mon Sep 17 00:00:00 2001 From: Jan Tuomi Date: Sun, 9 Oct 2016 12:37:24 +0300 Subject: Add editor class --- editor.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 editor.cpp (limited to 'editor.cpp') 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; +} -- cgit v1.3