diff base/Model.cpp @ 43:b8aae4f883b7

* More document structure / main window / file I/O work
author Chris Cannam
date Fri, 10 Mar 2006 12:28:22 +0000
parents a6ef94ecbe74
children 39ae3dee27b9
line wrap: on
line diff
--- a/base/Model.cpp	Wed Mar 08 17:47:58 2006 +0000
+++ b/base/Model.cpp	Fri Mar 10 12:28:22 2006 +0000
@@ -10,10 +10,14 @@
 #include "Model.h"
 #include "PlayParameterRepository.h"
 
+#include <iostream>
+
 const int Model::COMPLETION_UNKNOWN = -1;
 
 Model::~Model()
 {
+    std::cerr << "Model::~Model(" << this << ")" << std::endl;
+
     // Subclasses have to handle adding themselves to the repository,
     // if they want to be played.  We can't do it from here because
     // the repository would be unable to tell whether we were playable