aboutsummaryrefslogtreecommitdiffstats
path: root/editor.cpp
blob: b7ed4873c71d36600f57ffab9ed0a4b5415b6b3a (plain)
1
2
3
4
5
6
7
8
9
#include "editor.h"

Editor::Editor(std::string* contents) {
    m_contents = contents;
}

int Editor::run_editor() {
    return 0;
}