blob: 491c3fbf4a378b795943e8f4e7a7bf76f0afa7d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef EDITOR_H
#define EDITOR_H
#include <string>
#include <iostream>
class Editor {
public:
Editor(std::string* contents);
int run_editor();
private:
std::string* m_contents;
};
#endif
|