1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-07-03 23:50:33 +02:00
Files
joplin/QtClient/JoplinQtClient/models/note.cpp

20 lines
262 B
C++
Raw Normal View History

2016-12-11 16:09:39 +00:00
#include "note.h"
using namespace jop;
2017-01-21 11:47:24 +00:00
Note::Note() : Item() {
table_ = jop::NotesTable;
2016-12-11 16:09:39 +00:00
}
2016-12-14 21:50:26 +00:00
2017-01-21 11:47:24 +00:00
//Table Note::table() const {
// return jop::NotesTable;
//}
2017-01-12 17:59:19 +01:00
bool Note::primaryKeyIsUuid() const {
return true;
}
2016-12-27 21:25:07 +01:00
2017-01-12 17:59:19 +01:00
bool Note::trackChanges() const {
return true;
}