labs-edaf30/lab1/editor.cc

17 lines
244 B
C++
Raw Normal View History

2021-10-27 15:15:47 +02:00
#include "editor.h"
#include <string>
using std::string;
using size_type = Editor::size_type;
size_type Editor::get_size() const
{
return text.size();
}
size_type Editor::find_left_par(size_type pos) const {
return string::npos;
}