// // Programmer: Craig Stuart Sapp // Creation Date: Wed Jun 11 22:17:06 GMT-0800 1997 // Last Modified: Wed Jun 11 22:17:13 GMT-0800 1997 // Filename: ...sig/maint/code/Filter/RandomDist/RandomDist.h // Documentation: http://sig.sapp.org/doc/classes/RandomDist // Syntax: C++ // #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 */ // md5sum: e43b02d6fe19f2a38487279b4800d305 RandomDist.h [20010708]