home *** CD-ROM | disk | FTP | other *** search
- /*
- * FILE: testapp.h
- * AUTHOR: R. Gonzalez
- * CREATED: August 25, 1990
- *
- * Example used to test application classes.
- */
-
- # ifndef testapp_h
- # define testapp_h
-
- /* change following filename to one of: comapp.h, menapp.h, macapp.h */
- # include "menapp.h"
-
- # include "dfile.h"
-
- /************************************************************************
- * test application.
- ************************************************************************/
- struct Test_App:PARENT_CLASS
- {
- Dfile *dfile;
-
- boolean init(void);
- boolean destroy(void);
- };
-
- # endif
-
-