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
2017-02-08 21:43:35 +00:00

22 lines
225 B
C++
Executable File

#ifndef NOTE_H
#define NOTE_H
#include <stable.h>
#include "models/item.h"
namespace jop {
class Note : public Item {
public:
Note();
bool primaryKeyIsUuid() const;
bool trackChanges() const;
};
}
#endif // NOTE_H