aboutsummaryrefslogtreecommitdiff
path: root/src/stable/randombase.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/stable/randombase.h')
-rw-r--r--src/stable/randombase.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/stable/randombase.h b/src/stable/randombase.h
index aff1d45..a5a4f42 100644
--- a/src/stable/randombase.h
+++ b/src/stable/randombase.h
@@ -19,6 +19,9 @@ namespace Bu
19 19
20 virtual void seed( int32_t iSeed )=0; 20 virtual void seed( int32_t iSeed )=0;
21 virtual int32_t rand()=0; 21 virtual int32_t rand()=0;
22 virtual int32_t rand( int32_t iMax );
23 virtual int32_t rand( int32_t iMin, int32_t iMax );
24 virtual double randNorm();
22 }; 25 };
23}; 26};
24 27