// // Programmer: Craig Stuart Sapp // Creation Date: Sat Jun 7 08:46:00 GMT-0800 1997 // Last Modified: Sat Jun 7 08:46:04 GMT-0800 1997 // Filename: ...sig/maint/code/Filter/UnitDelay/UnitDelay.h // Web Address: http://sig.sapp.org/include/sigSignal/UnitDelay.h // Documentation: http://sig.sapp.org/doc/classes/UnitDelay // Syntax: C++ // #ifndef _UNITDELAY_H_INCLUDED #define _UNITDELAY_H_INCLUDED #include "Filter.h" class UnitDelay : public Filter { public: UnitDelay (void); ~UnitDelay (); void action (void); sampleType output (int index); protected: sampleType currentValue; sampleType outputValue; }; #endif /* _UNITDELAY_H_INCLUDED */ // md5sum: 982d3e69cbace523411485af55ab195c UnitDelay.h [20010708]