view include/TaskManager/Random.h @ 332:5950b6ff7fec draft

change bin/cerium
author aaa
date Fri, 12 Jun 2009 17:03:18 +0900
parents 56314060907f
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