home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / Think Class Libraries / CMovieController 1.0 / CShellApp.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-30  |  525 b   |  31 lines  |  [TEXT/KAHL]

  1. /*****
  2.  * CShellApp.h
  3.  *
  4.  *    Application class for a typical application.
  5.  *
  6.  *****/
  7.  
  8. #define    _H_CShellApp        /* Include this file only once */
  9. #include "CApplication.h"
  10.  
  11.  
  12. struct CShellApp : CApplication {
  13.  
  14.     /* No instance variables */
  15.  
  16.     void    IShellApp(void);
  17.     void    SetUpFileParameters(void);
  18.     
  19.     void    SetUpMenus(void); 
  20.     void    UpdateMenus(void); 
  21.  
  22.     void    DoCommand(long theCommand);
  23.     
  24.     void    Exit(void);
  25.  
  26.     void    ForceClassReferences( void);
  27.  
  28.     CDirector *DoShellDialogClass(Boolean modal,short ShellDialogID);
  29.     
  30. };
  31.