home *** CD-ROM | disk | FTP | other *** search
/ Education Sampler 1992 [NeXTSTEP] / Education_1992_Sampler.iso / Programming / c-runtime / tests / RCS / SubClass1.h,v < prev    next >
Encoding:
Text File  |  1992-08-18  |  505 b   |  53 lines

  1. head    1.1;
  2. access;
  3. symbols;
  4. locks
  5.     dglattin:1.1; strict;
  6. comment    @ * @;
  7.  
  8.  
  9. 1.1
  10. date    92.08.18.04.58.04;    author dglattin;    state Exp;
  11. branches;
  12. next    ;
  13.  
  14.  
  15. desc
  16. @test code.
  17. @
  18.  
  19.  
  20. 1.1
  21. log
  22. @Initial revision
  23. @
  24. text
  25. @#ifndef __SUBCLASS1_H
  26. #define __SUBCLASS1_H
  27.  
  28.  
  29. #include  <Object.h>
  30.  
  31. @@interface SubClass1 : Object {
  32.  
  33.   char  dumb[ 17 ];
  34. }
  35.  
  36. +initialize;
  37. + newOther;
  38. - hokeyMethod;
  39. - print;
  40. - print:( const char* )aPhrase;
  41.  
  42. + ( int )return12;
  43. - ( int )return15;
  44. - ( int )return24;
  45. - ( int )return33;
  46.  
  47.  
  48. @@end
  49.  
  50. #endif
  51.  
  52. @
  53.