home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1994 June / NEBULA_SE.ISO / SourceCode / OOP_Course / Labs / Converter / Solution / Converter.h < prev    next >
Encoding:
Text File  |  1993-01-19  |  114 b   |  13 lines

  1.  
  2. #import <appkit/appkit.h>
  3.  
  4. @interface Converter:Object
  5. {
  6.     id    input;
  7.     id    output;
  8. }
  9.  
  10. - convert:sender;
  11.  
  12. @end
  13.