home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.mdf / SourceCode / AlexNeXTSTEPSource / Source / Chapter3_OOD / ShapeArea / AbstractShape.h next >
Encoding:
Text File  |  1993-01-09  |  86 b   |  10 lines

  1. #import <objc/Object.h>
  2.  
  3. @interface AbstractShape:Object
  4. {
  5. }
  6.  
  7. -(float)calcArea;
  8.  
  9. @end
  10.