mirror of
https://github.com/laurent22/joplin.git
synced 2025-04-11 11:12:03 +02:00
23 lines
247 B
C++
Executable File
23 lines
247 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();
|
|
Table table() const;
|
|
bool primaryKeyIsUuid() const;
|
|
bool trackChanges() const;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif // NOTE_H
|