Implement reverb CCs

This commit is contained in:
hirsch 2016-06-24 13:06:05 -04:00
parent 7e45418d0f
commit fae1d3c727
7 changed files with 299 additions and 6 deletions

30
reverb.h Normal file
View file

@ -0,0 +1,30 @@
// -*-c++-*-
#ifndef _REVERB_H
#define _REVERB_H
class Mustang;
class ReverbCC {
protected:
Mustang * amp;
public:
ReverbCC( Mustang * theAmp ) : amp(theAmp) {}
// Level
int cc59( int value );
// Decay
int cc60( int value );
// Dwell
int cc61( int value );
// Diffusion
int cc62( int value );
// Tone
int cc63( int value );
};
#endif