]> git.sven.stormbind.net Git - sven/vym.git/blob - src/vymnote.cpp
Replace Pierre as the maintainer
[sven/vym.git] / src / vymnote.cpp
1 #include "vymnote.h"
2
3 /////////////////////////////////////////////////////////////////
4 // VymNote
5 /////////////////////////////////////////////////////////////////
6
7 VymNote::VymNote() { clear(); }
8
9 VymNote::VymNote(const VymText &other) { VymText::copy(other); }
10
11 void VymNote::operator=(const VymText &other) { copy(other); }
12
13 QString VymNote::saveToDir()
14 {
15     return singleElement("vymnote", getAttributes());
16 }