Mercurial > hg > easaier-soundaccess
diff data/model/TextModel.h @ 49:81e058c2be51
missing toXml function
| author | lbajardsilogic |
|---|---|
| date | Wed, 16 May 2007 11:30:26 +0000 |
| parents | fc9323a41f5a |
| children |
line wrap: on
line diff
--- a/data/model/TextModel.h Wed May 16 11:29:48 2007 +0000 +++ b/data/model/TextModel.h Wed May 16 11:30:26 2007 +0000 @@ -89,6 +89,16 @@ QString("%1 subtype=\"text\"") .arg(extraAttributes)); } + + virtual void toXml(QTextStream &out, + QString indent = "", + QString extraAttributes = "") const + { + SparseModel<TextPoint>::toXml + (out, + indent, + QString("%1 subtype=\"text\"").arg(extraAttributes)); + } };
