mirror of
https://github.com/vale981/openAV-Luppp
synced 2025-03-05 09:01:39 -05:00
-Controller has reset()
This commit is contained in:
parent
5bf7302e92
commit
908daa332f
2 changed files with 5 additions and 2 deletions
|
@ -12,3 +12,5 @@ Controller::Controller()
|
|||
{
|
||||
jack->getControllerUpdater()->registerController( this );
|
||||
}
|
||||
|
||||
void Controller::reset(){};
|
||||
|
|
|
@ -27,8 +27,6 @@ class Controller
|
|||
/// Time
|
||||
virtual void tapTempo(bool b){};
|
||||
|
||||
|
||||
|
||||
/// track functionality
|
||||
virtual void mute(int t, bool b){};
|
||||
virtual void volume(int t, float f){};
|
||||
|
@ -36,6 +34,9 @@ class Controller
|
|||
virtual void recordArm(int t, bool r){};
|
||||
virtual void setSceneState(int track, int scene, GridLogic::State s){};
|
||||
virtual void launchScene( int scene ){};
|
||||
|
||||
/// reset controller
|
||||
virtual void reset();
|
||||
};
|
||||
|
||||
#endif // LUPPP_CONTROLLER_H
|
||||
|
|
Loading…
Add table
Reference in a new issue