view include/TaskManager/Random.h @ 318:7efc5ede2c03

Document/Cerium_2009.mm
author aaa
date Tue, 09 Jun 2009 22:55:00 +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