// // Programmer: Craig Stuart Sapp // Creation Date: Sun Nov 17 00:39:26 PST 1996 // Last Modified: Wed Apr 23 22:44:36 GMT-0800 1997 // Filename: ...sig/maint/code/Filter/Scale/Scale.h // Web Address: http://sig.sapp.org/include/sigSignal/Scale.h // Documentation: http://sig.sapp.org/doc/classes/Scale // Syntax: C++ // #ifndef _SCALE_H_INCLUDED #define _SCALE_H_INCLUDED #include "Filter.h" #include "Array.h" class Scale : public Filter { public: Scale (sampleType value = 1); void action (void); sampleType getScale (void); sampleType output (int channel); void setScale (sampleType newScale); protected: Array Output; sampleType scaleValue; }; #endif /* _SCALE_H_INCLUDED */ // md5sum: bb8c9ca394cda56249e75d480e3a62fc Scale.h [20010708]