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

  1. /******************************************/
  2. /*  HammondOid Organ Subclass             */
  3. /*  of Algorithm 8 (TX81Z) Subclass of    */ 
  4. /*  4 Operator FM Synth                   */
  5. /*  by Perry R. Cook, 1995-96             */ 
  6. /******************************************/
  7.  
  8. #if !defined(__BeeThree_h)
  9. #define __BeeThree_h
  10.  
  11. #include "FM4Alg8.h"
  12.  
  13. class BeeThree : public FM4Alg8
  14. {
  15.   public:
  16.     BeeThree();
  17.     ~BeeThree();
  18.     virtual void setFreq(MY_FLOAT frequency);
  19.     MY_FLOAT tick();
  20.     virtual void noteOn(MY_FLOAT freq, MY_FLOAT amp);
  21. };
  22.  
  23. #endif
  24.