// // Programmer: Craig Stuart Sapp // Creation Date: Sat Nov 2 10:25:09 PST 1996 // Last Modified: Wed Apr 23 22:32:31 GMT-0800 1997 // Filename: ...sig/maint/code/Filter/Add/Add.h // Web Address: http://sig.sapp.org/include/sig/Add.h // Syntax: C++ // #ifndef _ADD_H_INCLUDED #define _ADD_H_INCLUDED #include "Filter.h" class Add : public Filter { public: Add (void); ~Add (); void action (void); void clear (void); sampleType output (int index); void printState (void); protected: sampleType outputValue; // stores the sum of the inputs }; #endif /* _ADD_H_INCLUDED */ // md5sum: 6b8bd9a6a2d82c14fb479745c04b3ce5 Add.h [20010708]