1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-04-20 11:28:40 +02:00

17 lines
160 B
C++
Raw Normal View History

2016-12-11 16:09:39 +00:00
#include "note.h"
using namespace jop;
Note::Note()
{
}
2016-12-14 21:50:26 +00:00
QString Note::body() const {
return body_;
}
void Note::setBody(const QString &v) {
body_ = v;
}