// // Programmer: Craig Stuart Sapp // Creation Date: Sat Nov 2 10:25:09 PST 1996 // Last Modified: Wed Apr 23 22:36:04 GMT-0800 1997 // Filename: ...sig/maint/code/Filter/Multiply/Multiply.h // Web Address: http://sig.sapp.org/include/sigSignal/Multiply.h // Documentation: http://sig.sapp.org/doc/classes/Multiply // Syntax: C++ // #ifndef _MULTIPLY_H_INCLUDED #define _MULTIPLY_H_INCLUDED #include "Filter.h" class Multiply : public Filter { public: Multiply (void); void action (void); sampleType output (int channel); protected: sampleType Output; }; #endif /* _MULTIPLY_H_INCLUDED */ // md5sum: 794c35d634fcfddfe361cc4fc71b962c Multiply.h [20010708]