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.h

22 lines
225 B
C
Raw Normal View History

2016-12-11 16:09:39 +00:00
#ifndef NOTE_H
#define NOTE_H
#include <stable.h>
#include "models/item.h"
namespace jop {
class Note : public Item {
public:
Note();
2017-01-12 17:59:19 +01:00
bool primaryKeyIsUuid() const;
bool trackChanges() const;
2016-12-11 16:09:39 +00:00
};
}
#endif // NOTE_H