comparison include/TaskManager/Random.h @ 229:401b55a4a4dd

add Random class
author gongo@gendarme.cr.ie.u-ryukyu.ac.jp
date Thu, 12 Feb 2009 19:05:02 +0900
parents
children 2b114977852d
comparison
equal deleted inserted replaced
228:c254a2bd1b34 229:401b55a4a4dd
1 #ifndef INCLUDED_RANDOM
2 #define INCLUDED_RANDOM
3
4 class Random {
5 public:
6 Random(void);
7 Random(unsigned int seed);
8
9 int getData(void);
10 };
11
12 typedef Random *RandomPtr;
13
14 #endif