home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.bin / SourceCode / AlexNeXTSTEPSource / Source / Chapter9_Text / Words / Document.h < prev    next >
Encoding:
Text File  |  1993-03-20  |  330 b   |  21 lines

  1. #import <objc/Object.h>
  2.  
  3. @interface Document:Object
  4. {
  5.     id window;
  6.     id theText;
  7.     id textController;
  8. }
  9.  
  10. - init;
  11. - initDocumentFromFile:
  12.   (const char *)fullPathname;
  13. - showDocument;
  14. - saveDocumentToFile:
  15.   (const char*)fullPathname;
  16. - textDidGetKeys:sender isEmpty:(BOOL)flag;
  17. - showError:(const char*)errorMessage;
  18. - window;
  19.  
  20. @end
  21.