You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-07-03 23:50:33 +02:00
20 lines
262 B
C++
Executable File
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;
|
|
}
|