16 lines
244 B
C++
16 lines
244 B
C++
#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;
|
|
}
|