]> git.sven.stormbind.net Git - sven/vym.git/blobdiff - src/vymnote.h
New upstream version 2.9.22
[sven/vym.git] / src / vymnote.h
diff --git a/src/vymnote.h b/src/vymnote.h
new file mode 100644 (file)
index 0000000..9d584a5
--- /dev/null
@@ -0,0 +1,15 @@
+#ifndef VYMNOTE_H
+#define VYMNOTE_H
+
+#include "vymtext.h"
+
+/*! \brief The text note belonging to one OrnamentedObj */
+
+class VymNote : public VymText {
+  public:
+    VymNote();
+    VymNote(const VymText &vt);
+    void operator=(const VymText &other);
+    QString saveToDir();
+};
+#endif