home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Actual 9
/
CDACTUAL9.iso
/
share
/
Os2
/
JUEGOS
/
BOGGLE
/
SOURCE.ZIP
/
random.hpp
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1996-03-03
|
341 b
|
22 lines
#ifndef RANDOM_H
#define RANDOM_H
#include <time.h>
#include <stdlib.h>
#include <string.h>
//_CLASSDEF(Random)
class Random {
int cube_array[16];
public:
void perm();
int getValue(int); //return the value at the ith index of
}; // cube_array.
#endif