home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / mac / hypercar / mactool / thinkcgu.sit / app ƒ / testapp.h < prev   
Encoding:
C/C++ Source or Header  |  1991-02-27  |  557 b   |  30 lines

  1. /*
  2. *    FILE:        testapp.h
  3. *    AUTHOR:        R. Gonzalez
  4. *    CREATED:    August 25, 1990
  5. *
  6. *    Example used to test application classes.
  7. */
  8.  
  9. # ifndef    testapp_h
  10. # define    testapp_h
  11.  
  12. /* change following filename to one of: comapp.h, menapp.h, macapp.h  */
  13. # include    "menapp.h"
  14.  
  15. # include    "dfile.h"
  16.  
  17. /************************************************************************
  18. *    test application.
  19. ************************************************************************/
  20. struct    Test_App:PARENT_CLASS
  21. {
  22.     Dfile            *dfile;
  23.     
  24.     boolean            init(void);
  25.     boolean            destroy(void);
  26. };
  27.  
  28. # endif
  29.  
  30.