home *** CD-ROM | disk | FTP | other *** search
- //
- // RandomEngine
- //
- // An abstract Objective-C class for random number
- // generator engines.
- //
- // Copyright (C) 1992 Contemporary Design Studios. All rights reserved.
- //
-
-
- #import <objc/Object.h>
-
-
- //
- // Types:
- //
-
- typedef unsigned long ulong;
- typedef unsigned short ushort;
- typedef unsigned char uchar;
-
-
- @interface RandomEngine : Object
-
-
- {
- }
-
-
- + (int)unit; // Return the unit of generation (# of BYTES).
-
- - makeRandom:(uchar *)storage;
-
-
- @end
-
-
- //
- // End of file.
- //