home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 April / macformat-023.iso / Shareware City / Developers / NeoPersist 3.0.8 folder / NeoBench / Includes / CNeoBenchApp.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-04  |  416 b   |  21 lines  |  [TEXT/MMCC]

  1. /*****
  2.  * CNeoBenchApp.h
  3.  *
  4.  *    Application class for a typical application.
  5.  *
  6.  *****/
  7. #pragma once        /* Include this file only once */
  8.  
  9. #include CNeoAppRootH
  10.  
  11. const OSType kNeoBenchFileType    = 'Ne5d';
  12. const OSType kNeoBenchSig        = 'Neo5';
  13.  
  14. struct CNeoBenchApp : CNeoAppRoot {
  15.                         CNeoBenchApp(void);
  16.                         ~CNeoBenchApp(void);
  17.  
  18.     virtual CNeoDoc    *    createDocument(void);
  19.     virtual void        OpenDocument(FSSpec *aSpec);
  20. };
  21.