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