This is RandomDist.h in view mode; [Download] [Up]
// // Programmer: Craig Stuart Sapp <craig@ccrma.stanford.edu> // Creation Date: Wed Jun 11 22:17:06 GMT-0800 1997 // Last Modified: Wed Jun 11 22:17:13 GMT-0800 1997 // Filename: .../sig/src/Filter/RandomDist/RandomDist.h // Syntax: C++ // $Smake: cc -Wall -g -c %b.cc -I../../../include && rm -f %b.o // #ifndef _RANDOMDIST_H_INCLUDED #define _RANDOMDIST_H_INCLUDED #include "Filter.h" #include "Distribution.h" class RandomDist : public Filter, public Distribution { public: RandomDist (void); ~RandomDist (); void action (void); sampleType output (int index); protected: sampleType outputValue; }; #endif _RANDOMDIST_H_INCLUDED
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.