home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / Languages / GCC 1.37.1r14 / usr / gcc-1.37.1r14 / object oriented files / CObjectDoc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-11-10  |  582 b   |  28 lines  |  [TEXT/KAHL]

  1. /****
  2.  * CObjectDoc.h
  3.  *
  4.  *    Document class for a typical application.
  5.  *
  6.  ****/
  7.  
  8. #define    _H_CObjectDoc            /* Include this file only once */
  9. #include "CDocument.h"
  10. #include "CApplication.h" 
  11.  
  12. struct CObjectDoc : CDocument {
  13.  
  14.                                     /** Construction/Destruction **/
  15.                                     
  16.     
  17.     void        IObjectDoc(CApplication *aSupervisor, Boolean printable);
  18.     void        Dispose(void);
  19.  
  20.     void        DoCommand(long theCommand);
  21.  
  22.     void        UpdateMenus(void);  
  23.  
  24.     void        OpenFile(SFReply *macSFReply);
  25.     void        BuildWindow(Handle theData);
  26.  
  27.     Handle        itsData;
  28. };