comparison base/XmlExportable.h @ 27:070e9e1e40ea

* Change SpectrogramLayer to use its own cache type instead of a QImage * Some gcc-4.0 compile fixes
author Chris Cannam
date Tue, 14 Feb 2006 17:43:14 +0000
parents 149bb02a41ba
children 39ae3dee27b9
comparison
equal deleted inserted replaced
26:090c22aa726a 27:070e9e1e40ea
14 #include <QColor> 14 #include <QColor>
15 15
16 class XmlExportable 16 class XmlExportable
17 { 17 {
18 public: 18 public:
19 virtual ~XmlExportable() { }
20
19 virtual QString toXmlString(QString indent = "", 21 virtual QString toXmlString(QString indent = "",
20 QString extraAttributes = "") const = 0; 22 QString extraAttributes = "") const = 0;
21 23
22 static QString encodeEntities(QString); 24 static QString encodeEntities(QString);
23 25