home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.mdf / Apps / DevTools / ClassEditor.0.3 / Examples / ASCIIExampleClass.h next >
Encoding:
Text File  |  1995-01-23  |  841 b   |  45 lines

  1. /* ASCIIExampleClass.h                 
  2.  *
  3.  * This object controls the data of a beaker (molecules, cameras, groups etc.)
  4.  * It is the main document of BeakerBoy and controls everything from loading to
  5.  * setting up the browser which does most of the other work.
  6.  *
  7.  * Usage: ....
  8.  *
  9.  * Written by:         Thomas Engel
  10.  * Created:            23.10.1993 (Copyleft)
  11.  * Last modified:     12.11.1994
  12.  */
  13.  
  14. // Attention . Tab will be one space wide here... quite ugly. Isn't it ?
  15.  
  16.  
  17. #import <appkit/appkit.h>
  18.  
  19. @interface ASCIIExampleClass:Object
  20. {
  21.     id    name;                // Used to store the full method name.
  22.     id    selectorName;
  23. }
  24.  
  25. + initialize;
  26.  
  27. - init;
  28. - initFromText:theLine;
  29. - free;
  30. - freeAll;
  31.  
  32. - (char *)name;
  33. - (char *)selectorName;
  34.  
  35. - (BOOL)isInstanceMethod;
  36. - (void *)doNothing:(int)right butWithSpeed:forTesting;
  37.  
  38. @end
  39.  
  40. /*
  41.  * Hisry: 13.01.95 Buh
  42.  *            
  43.  *
  44.  * Bugs: - ...
  45.  */*/