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.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 editor.h (limited to 'editor.h') 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 +#include + +class Editor { + public: + Editor(std::string* contents); + int run_editor(); + private: + std::string* m_contents; +}; + +#endif -- cgit v1.3