// // Programmer: Craig Stuart Sapp // Creation Date: Mon Apr 28 21:46:28 GMT-0800 1997 // Last Modified: Mon Apr 28 21:46:28 GMT-0800 1997 // Filename: ...sig/maint/code/Generator/Constant/Constant.h // Web Address: http://sig.sapp.org/include/sigSignal/Constant.h // Documentation: http://sig.sapp.org/doc/classes/Constant // Syntax: C++ // #ifndef _CONSTANT_H_INCLUDED #define _CONSTANT_H_INCLUDED #include "Generator.h" class Constant : public Generator { public: Constant (sampleType aValue = 0); ~Constant (); void action (void); sampleType output (int channel); void printState (void); void setValue (sampleType aValue); protected: sampleType value; }; #endif /* _CONSTANT_H_INCLUDED */ // md5sum: 986959da611ac61d54d3924ae162216b Constant.h [20010708]