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

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