diff base/PropertyContainer.h @ 28:4b16526b011b

* Add LED button * Add note model playback (currently assuming that value == MIDI pitch) * Reorganise PlayParameters and move repository from ViewManager to new PlayParameterRepository class
author Chris Cannam
date Wed, 15 Feb 2006 17:58:35 +0000
parents 070e9e1e40ea
children 8460b3bf8f04
line wrap: on
line diff
--- a/base/PropertyContainer.h	Tue Feb 14 17:43:14 2006 +0000
+++ b/base/PropertyContainer.h	Wed Feb 15 17:58:35 2006 +0000
@@ -14,7 +14,7 @@
 #include <QObject>
 #include <vector>
 
-class Playable;
+class PlayParameters;
 
 class PropertyContainer
 {
@@ -82,7 +82,7 @@
     virtual QString getPropertyContainerName() const = 0;
     virtual QString getPropertyContainerIconName() const = 0;
 
-    Playable *getPlayable() const { return 0; }
+    virtual PlayParameters *getPlayParameters() const { return 0; }
 };
 
 #endif