Mercurial > hg > svcore
diff base/PlayParameterRepository.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 | |
children | 8460b3bf8f04 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/base/PlayParameterRepository.h Wed Feb 15 17:58:35 2006 +0000 @@ -0,0 +1,36 @@ +/* -*- 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. +*/ + +#ifndef _PLAY_PARAMETER_REPOSITORY_H_ +#define _PLAY_PARAMETER_REPOSITORY_H_ + +class PlayParameters; +class Model; + +#include <map> + +class PlayParameterRepository +{ +public: + static PlayParameterRepository *instance(); + + virtual ~PlayParameterRepository(); + +//!!! No way to remove a model! + PlayParameters *getPlayParameters(const Model *model); + + void clear(); + +protected: + std::map<const Model *, PlayParameters *> m_playParameters; + + static PlayParameterRepository *m_instance; +}; + +#endif