This is UnitDelay.h in view mode; [Download] [Up]
//
// Programmer: Craig Stuart Sapp <craig@ccrma.stanford.edu>
// Creation Date: Sat Jun 7 08:46:00 GMT-0800 1997
// Last Modified: Sat Jun 7 08:46:04 GMT-0800 1997
// Filename: .../sig/src/Filter/UnitDelay/UnitDelay.h
// Syntax: C++
// $Smake: cc -Wall -g -c %b.cc -I../../../include && rm -f %b.o
//
#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
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.