]> git.sven.stormbind.net Git - sven/vym.git/blob - src/noteeditor.h
New upstream version 2.9.22
[sven/vym.git] / src / noteeditor.h
1 #ifndef NOTEEDITOR_H
2 #define NOTEEDITOR_H
3
4 #include "texteditor.h"
5
6 class VymNote;
7
8 class NoteEditor : public TextEditor {
9     Q_OBJECT
10   public:
11     NoteEditor(QString scope);
12     ~NoteEditor();
13
14     VymNote getNote();
15     void setNote(const VymNote &note);
16 };
17
18 #endif