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

18 lines
228 B
C++
Raw Normal View History

2016-12-11 16:09:39 +00:00
#include "note.h"
using namespace jop;
2017-01-12 17:59:19 +01:00
Note::Note() : Item() {}
2016-12-11 16:09:39 +00:00
2017-01-12 17:59:19 +01:00
Table Note::table() const {
return jop::NotesTable;
2016-12-11 16:09:39 +00:00
}
2016-12-14 21:50:26 +00:00
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;
}