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; }