home *** CD-ROM | disk | FTP | other *** search
- /* ASCIIExampleClass.h
- *
- * This object controls the data of a beaker (molecules, cameras, groups etc.)
- * It is the main document of BeakerBoy and controls everything from loading to
- * setting up the browser which does most of the other work.
- *
- * Usage: ....
- *
- * Written by: Thomas Engel
- * Created: 23.10.1993 (Copyleft)
- * Last modified: 12.11.1994
- */
-
- // Attention . Tab will be one space wide here... quite ugly. Isn't it ?
-
-
- #import <appkit/appkit.h>
-
- @interface ASCIIExampleClass:Object
- {
- id name; // Used to store the full method name.
- id selectorName;
- }
-
- + initialize;
-
- - init;
- - initFromText:theLine;
- - free;
- - freeAll;
-
- - (char *)name;
- - (char *)selectorName;
-
- - (BOOL)isInstanceMethod;
- - (void *)doNothing:(int)right butWithSpeed:forTesting;
-
- @end
-
- /*
- * Hisry: 13.01.95 Buh
- *
- *
- * Bugs: - ...
- */*/