]> git.sven.stormbind.net Git - sven/vym.git/blobdiff - src/noteeditor.h
New upstream version 2.9.22
[sven/vym.git] / src / noteeditor.h
diff --git a/src/noteeditor.h b/src/noteeditor.h
new file mode 100644 (file)
index 0000000..6316674
--- /dev/null
@@ -0,0 +1,18 @@
+#ifndef NOTEEDITOR_H
+#define NOTEEDITOR_H
+
+#include "texteditor.h"
+
+class VymNote;
+
+class NoteEditor : public TextEditor {
+    Q_OBJECT
+  public:
+    NoteEditor(QString scope);
+    ~NoteEditor();
+
+    VymNote getNote();
+    void setNote(const VymNote &note);
+};
+
+#endif