home *** CD-ROM | disk | FTP | other *** search
- //
- // StandardEngine
- //
- // This is an Objective-C class which uses
- // the Random architecture from
- // Contemporary Design Studios.
- //
- // The StandardEngine class is a wrapper for the standard C/UNIX
- // rand() and srand() functions supplied on the NeXT computer.
- //
- // Copyright (C) 1992 Contemporary Design Studios. All rights reserved.
- //
-
-
- #import "RandomEngine.h"
-
-
- @interface StandardEngine : RandomEngine
-
-
- {
- ulong last;
- }
-
-
- + (int)unit;
-
- - init;
-
- - makeRandom:(uchar *)storage;
-
- - read:(NXTypedStream *)stream;
- - write:(NXTypedStream *)stream;
-
-
- @end
-
-
- //
- // End of file.
- //