CSL  6.0
csl::CVariable Class Reference

CVariable is the the abstract external variable (plug or port) class. This is the abstract class for static and dynamic variables; it's a sample stream. Clients of Variable (oscillators, dsp units, etc) first ask whether its values are fixed over the length of the buffer or not. If the value is fixed, the client calls next_sample() to get the next sample and use it the DSP loop. If the value is not fixed, the client calls next_buffer() to get the next buffer of values. More...

#include <Variable.h>

+ Inheritance diagram for csl::CVariable:

Public Member Functions

 CVariable ()
 Constructors. More...
 
 CVariable (float tvalue)
 
float value ()
 Accessors. More...
 
void setValue (float x)
 
void setValue (int x)
 
void setValue (double x)
 

Protected Attributes

float mValue
 the value I represent More...
 

Detailed Description

CVariable is the the abstract external variable (plug or port) class. This is the abstract class for static and dynamic variables; it's a sample stream. Clients of Variable (oscillators, dsp units, etc) first ask whether its values are fixed over the length of the buffer or not. If the value is fixed, the client calls next_sample() to get the next sample and use it the DSP loop. If the value is not fixed, the client calls next_buffer() to get the next buffer of values.

Definition at line 29 of file Variable.h.

Constructor & Destructor Documentation

csl::CVariable::CVariable ( )
inline

Constructors.

Definition at line 35 of file Variable.h.

csl::CVariable::CVariable ( float  tvalue)
inline

Definition at line 36 of file Variable.h.

Member Function Documentation

float csl::CVariable::value ( )
inline

Accessors.

Definition at line 38 of file Variable.h.

Referenced by csl::StaticVariable::value().

void csl::CVariable::setValue ( float  x)
inline

Definition at line 39 of file Variable.h.

Referenced by csl::StaticVariable::setValue(), and csl::DynamicVariable::setValue().

void csl::CVariable::setValue ( int  x)
inline

Definition at line 40 of file Variable.h.

void csl::CVariable::setValue ( double  x)
inline

Definition at line 41 of file Variable.h.

Member Data Documentation

float csl::CVariable::mValue
protected

the value I represent

Definition at line 32 of file Variable.h.


The documentation for this class was generated from the following file: