1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-04-14 11:18:47 +02:00

23 lines
247 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
Table table() const;
bool primaryKeyIsUuid() const;
bool trackChanges() const;
2016-12-11 16:09:39 +00:00
};
}
#endif // NOTE_H