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

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