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

18 lines
228 B
C++
Executable File

#include "note.h"
using namespace jop;
Note::Note() : Item() {}
Table Note::table() const {
return jop::NotesTable;
}
bool Note::primaryKeyIsUuid() const {
return true;
}
bool Note::trackChanges() const {
return true;
}