view include/TaskManager/Random.h @ 314:2ddf79a7c5fb

debugging
author root@localhost.localdomain
date Tue, 09 Jun 2009 01:22:11 +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