diff base/Model.cpp @ 3:581f67f370f3

* Beginnings of session save code * Add spline curve mode to time value layer
author Chris Cannam
date Thu, 12 Jan 2006 17:19:08 +0000
parents da6937383da8
children 149bb02a41ba
line wrap: on
line diff
--- a/base/Model.cpp	Thu Jan 12 13:45:27 2006 +0000
+++ b/base/Model.cpp	Thu Jan 12 17:19:08 2006 +0000
@@ -1,8 +1,31 @@
+/* -*- c-basic-offset: 4 -*-  vi:set ts=8 sts=4 sw=4: */
+
+/*
+    A waveform viewer and audio annotation editor.
+    Chris Cannam, Queen Mary University of London, 2005-2006
+    
+    This is experimental software.  Not for distribution.
+*/
 
 #include "Model.h"
 
 const int Model::COMPLETION_UNKNOWN = -1;
 
+QString
+Model::toXmlString(QString indent, QString extraAttributes) const
+{
+    QString s;
+    
+    s += indent;
+
+    s += QString("<model id=\"%1\" name=\"%2\" %3/>\n")
+	.arg((intptr_t)this)
+	.arg(objectName())
+	.arg(extraAttributes);
+
+    return s;
+}
+
 #ifdef INCLUDE_MOCFILES
 #ifdef INCLUDE_MOCFILES
 #include "Model.moc.cpp"