home *** CD-ROM | disk | FTP | other *** search
/ PC Musician 2000 / PC_Musician_2000.iso / PCMUSIC / NOTATION / SILENCE / VIBRAPHN.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-03-16  |  715 b   |  28 lines

  1. /*******************************************/
  2. /*  Vibraphone SubClass of Modal4          */
  3. /*  Instrument, by Perry R. Cook, 1995-96  */ 
  4. /*                                         */
  5. /*   Controls:    CONTROL1 = stickHardness */
  6. /*                CONTROL2 = strikePosition*/
  7. /*          CONTROL3 = vibFreq       */
  8. /*          MOD_WHEEL= vibAmt        */
  9. /*******************************************/
  10.  
  11. #if !defined(__Vibraphn_h)
  12. #define __Vibraphn_h
  13.  
  14. #include "Modal4.h"
  15.  
  16. class Vibraphn : public Modal4
  17. {
  18.   protected:
  19.   public:
  20.     Vibraphn();
  21.     ~Vibraphn();
  22.     void setStickHardness(MY_FLOAT hardness);
  23.     void setStrikePosition(MY_FLOAT position);
  24.     virtual void controlChange(int number, MY_FLOAT value);
  25. };
  26.  
  27. #endif
  28.