00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef __itkRandomVariateGenerator_h
00018 #define __itkRandomVariateGenerator_h
00019
00020 #include "itkObject.h"
00021
00022 namespace itk {
00023 namespace Statistics {
00024
00030 class ITK_EXPORT RandomVariateGeneratorBase : public Object
00031 {
00032 public:
00034 typedef RandomVariateGeneratorBase Self ;
00035 typedef Object Superclass;
00036 typedef SmartPointer<Self> Pointer;
00037 typedef SmartPointer<const Self> ConstPointer;
00038
00040 itkTypeMacro(RandomVariateGeneratorBase, Object );
00041
00043 virtual double GetVariate() = 0 ;
00044
00045 protected:
00046 RandomVariateGeneratorBase() {}
00047 virtual ~RandomVariateGeneratorBase() {}
00048
00049 private:
00050 } ;
00051
00052 }
00053 }
00054
00055 #endif