Removed undefined clear() functions in FM, Resonate, Simple, and Sampler classes; a few documentation updates in preparation for 4.5.0 release.

This commit is contained in:
Gary Scavone
2014-04-23 12:12:35 -04:00
parent 1c5d42e64c
commit ea52f1f1a8
8 changed files with 11 additions and 15 deletions

View File

@@ -46,9 +46,6 @@ class FM : public Instrmnt
//! Class destructor.
virtual ~FM( void );
//! Reset and clear all wave and envelope states.
void clear( void );
//! Load the rawwave filenames in waves.
void loadWaves( const char **filenames );

View File

@@ -36,9 +36,6 @@ class Resonate : public Instrmnt
//! Class destructor.
~Resonate( void );
//! Reset and clear all internal state.
void clear( void );
//! Set the filter for a resonance at the given frequency (Hz) and radius.
void setResonance( StkFloat frequency, StkFloat radius );

View File

@@ -28,9 +28,6 @@ class Sampler : public Instrmnt
//! Class destructor.
virtual ~Sampler( void );
//! Reset and clear all internal state.
void clear( void );
//! Set instrument parameters for a particular frequency.
virtual void setFrequency( StkFloat frequency ) = 0;

View File

@@ -41,9 +41,6 @@ class Simple : public Instrmnt
//! Class destructor.
~Simple( void );
//! Clear internal states.
void clear( void );
//! Set instrument parameters for a particular frequency.
void setFrequency( StkFloat frequency );