// // Programmer: Craig Stuart Sapp // Creation Date: Wed Mar 25 17:09:25 GMT-0800 1998 // Last Modified: Wed Mar 25 17:09:31 GMT-0800 1998 // Filename: ...sig/maint/code/Filter/Sign/Sign.h // Web Address: http://sig.sapp.org/include/sigSignal/Sign.h // Documentation: http://sig.sapp.org/doc/classes/Sign // Syntax: C++ // #ifndef _SIGN_H_INCLUDED #define _SIGN_H_INCLUDED #include "Filter.h" class Sign : public Filter { public: Sign (void); ~Sign (); void action (void); void clear (void); sampleType getInput (void); sampleType output (int index); void printState (void); void setInput (sampleType aValue); void setInput (Signal& aSignal, int outputChannel = 0); void setInput (Signal* aSignal, int outputChannel = 0); protected: sampleType outputValue; // stores the current output }; #endif /* _SIGN_H_INCLUDED */ // md5sum: add2941feb6f2277841847f3088af759 Sign.h [20010708]