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
2017-01-21 11:47:24 +00:00

20 lines
262 B
C++
Executable File

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