comparison document/Document.h @ 196:29c356da4ae4

* Make XmlExportable::toXml the function that is universally overridden (and pure virtual) instead of toXmlString. Tidies up some classes, notably the model classes, significantly. Closes #1794561.
author Chris Cannam
date Thu, 18 Oct 2007 10:15:07 +0000
parents 98ba77e0d897
children de783e8ee5f0
comparison
equal deleted inserted replaced
195:61bf55e80080 196:29c356da4ae4
188 * Remove the given layer from the given view. 188 * Remove the given layer from the given view.
189 */ 189 */
190 void removeLayerFromView(View *, Layer *); 190 void removeLayerFromView(View *, Layer *);
191 191
192 void toXml(QTextStream &, QString indent, QString extraAttributes) const; 192 void toXml(QTextStream &, QString indent, QString extraAttributes) const;
193 QString toXmlString(QString indent, QString extraAttributes) const;
194
195 signals: 193 signals:
196 void layerAdded(Layer *); 194 void layerAdded(Layer *);
197 void layerRemoved(Layer *); 195 void layerRemoved(Layer *);
198 void layerAboutToBeDeleted(Layer *); 196 void layerAboutToBeDeleted(Layer *);
199 197