X-Git-Url: https://git.sven.stormbind.net/?a=blobdiff_plain;f=src%2Fnoteeditor.h;fp=src%2Fnoteeditor.h;h=63166745226007f8fb129273621128465f95c43a;hb=d483bd8e6523c23c6f1d8908a2e0611c2bc9ff4f;hp=0000000000000000000000000000000000000000;hpb=7dfa3fe589d1722d49681f42cdb0bf1e6efb5223;p=sven%2Fvym.git diff --git a/src/noteeditor.h b/src/noteeditor.h new file mode 100644 index 0000000..6316674 --- /dev/null +++ b/src/noteeditor.h @@ -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 ¬e); +}; + +#endif