// // Programmer: Craig Stuart Sapp // Creation Date: Mon Nov 3 20:04:10 PST 1997 // Last Modified: Mon Nov 3 20:04:13 PST 1997 // Filename: ...sig/maint/code/Filter/ResoundOut/ResoundOut.h // Web Address: http://sig.sapp.org/include/sigSignal/ResoundOut.h // Documentation: http://sig.sapp.org/doc/classes/ResoundOut // Syntax: C++ // #ifndef _RESOUNDOUT_H_INCLUDED #define _RESOUNDOUT_H_INCLUDED #include "Filter.h" #include "SoundHeader.h" #ifndef OLDCPP #include using namespace std; #else #include #endif class ResoundOut : public Filter { public: ResoundOut (short *soundData, SoundHeader& header); ~ResoundOut (); void action (void); void clear (void); sampleType output (int channel); protected: short *data; SoundHeader sndheader; long sampleCount; }; #endif /* _RESOUNDOUT_H_INCLUDED */ // md5sum: 65f081ec84502eca65ec3004dbed62d0 ResoundOut.h [20050403]