Formatting
This commit is contained in:
parent
53b9f8e4a3
commit
dbd64f4545
1 changed files with 12 additions and 12 deletions
|
@ -4,10 +4,10 @@
|
|||
#include <string>
|
||||
|
||||
class Editor {
|
||||
public:
|
||||
public:
|
||||
using size_type = std::string::size_type;
|
||||
/* Creates a text editor containing the text t */
|
||||
Editor(const std::string& t) : text(t) {}
|
||||
Editor(const std::string &t) : text(t) {}
|
||||
|
||||
/* Get the size of the current contents */
|
||||
size_type get_size() const;
|
||||
|
@ -20,7 +20,7 @@ public:
|
|||
size_type find_left_par(size_type pos) const;
|
||||
|
||||
// ... functions to edit the text (insert and delete characters)
|
||||
private:
|
||||
private:
|
||||
std::string text;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue