X-Git-Url: https://git.sven.stormbind.net/?a=blobdiff_plain;f=src%2Fvymnote.cpp;fp=src%2Fvymnote.cpp;h=0978de665edee18817876cd477a84ec97b744234;hb=d483bd8e6523c23c6f1d8908a2e0611c2bc9ff4f;hp=0000000000000000000000000000000000000000;hpb=7dfa3fe589d1722d49681f42cdb0bf1e6efb5223;p=sven%2Fvym.git diff --git a/src/vymnote.cpp b/src/vymnote.cpp new file mode 100644 index 0000000..0978de6 --- /dev/null +++ b/src/vymnote.cpp @@ -0,0 +1,16 @@ +#include "vymnote.h" + +///////////////////////////////////////////////////////////////// +// VymNote +///////////////////////////////////////////////////////////////// + +VymNote::VymNote() { clear(); } + +VymNote::VymNote(const VymText &other) { VymText::copy(other); } + +void VymNote::operator=(const VymText &other) { copy(other); } + +QString VymNote::saveToDir() +{ + return singleElement("vymnote", getAttributes()); +}