diff base/ViewManager.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 bb9291d84810
children 5e28cbb431d0
line wrap: on
line diff
--- a/base/ViewManager.h	Tue Feb 14 17:43:14 2006 +0000
+++ b/base/ViewManager.h	Wed Feb 15 17:58:35 2006 +0000
@@ -18,7 +18,6 @@
 #include "Selection.h"
 
 class AudioPlaySource;
-class PlayParameters;
 class Model;
 
 /**
@@ -40,10 +39,6 @@
 
     void setAudioPlaySource(AudioPlaySource *source);
 
-//!!! No way to remove a model!
-    PlayParameters *getPlayParameters(const Model *model);
-    void clearPlayParameters();
-
     bool isPlaying() const;
 
     unsigned long getGlobalCentreFrame() const;
@@ -140,8 +135,6 @@
 
     bool m_playLoopMode;
     bool m_playSelectionMode;
-
-    std::map<const Model *, PlayParameters *> m_playParameters;
 };
 
 #endif