src/model.cpp@68443f5be176
src/model.cpp
Sat, 05 Oct 2019 23:47:03 +0300
- author
- Teemu Piippo <teemu@hecknology.net>
- date
- Sat, 05 Oct 2019 23:47:03 +0300
- changeset 7
- 68443f5be176
- parent 3
-
55a55a9ec2c2
- child 8
-
44679e468ba9
- permissions
- -rw-r--r--
added the settings editor
#include "model.h"
#include "modeleditcontext.h"
Model::Model()
{
}
int Model::size() const
{
return this->body.size();
}
Model::EditContext Model::edit()
{
return {*this};
}