Mercurial > hg > Members > kono > Cerium
view include/TaskManager/Random.h @ 230:2b114977852d
fix Random
author | gongo@localhost.localdomain |
---|---|
date | Fri, 13 Feb 2009 10:53:58 +0900 |
parents | 401b55a4a4dd |
children |
line wrap: on
line source
#ifndef INCLUDED_RANDOM #define INCLUDED_RANDOM class Random { public: Random(void); Random(unsigned int seed); void reset(void); int getData(void); }; typedef Random *RandomPtr; #endif