Mercurial > hg > Members > kono > Cerium
view include/TaskManager/Random.h @ 247:0098b5ff0d11
change example
author | aaa |
---|---|
date | Mon, 01 Jun 2009 19:33:09 +0900 |
parents | 2b114977852d |
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