My Project
 All Classes Files Functions Variables
MyRandom.h
Go to the documentation of this file.
1 #ifndef MYRANDOM_H
2 #define MYRANDOM_H
3 
4 class MyRandom
5 {
6 public:
7  MyRandom();
8  // generate random number for the range (min, max)
9  double irand(int min, int max);
10 private:
11 
12 };
13 
14 #endif