This is ResoundOut.h in view mode; [Download] [Up]
// // Programmer: Craig Stuart Sapp <craig@ccrma.stanford.edu> // Creation Date: Mon Nov 3 20:04:10 PST 1997 // Last Modified: Mon Nov 3 20:04:13 PST 1997 // Filename: .../sig/Filter/ResoundOut/ResoundOut.h // Syntax: C++ // $Smake: cc -Wall -g -c %b.cc -I../../../include && rm -f %b.o // #ifndef _RESOUNDOUT_H_INCLUDED #define _RESOUNDOUT_H_INCLUDED #include "Filter.h" #include "Definitions.h" #include "SoundHeader.h" #include <fstream.h> 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
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.