~ubuntu-branches/ubuntu/oneiric/muse/oneiric

« back to all changes in this revision

Viewing changes to synti/stklib/HeavyMtl.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Kobras
  • Date: 2002-04-23 17:28:23 UTC
  • Revision ID: james.westby@ubuntu.com-20020423172823-w8yplzr81a759xa3
Tags: upstream-0.5.2
ImportĀ upstreamĀ versionĀ 0.5.2

Show diffs side-by-side

added added

removed removed

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