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