home *** CD-ROM | disk | FTP | other *** search
- /*
- * FILE: menapp.h
- * AUTHOR: R. Gonzalez
- * CREATED: August 25, 1990
- *
- * Defines menu-driven application class.
- */
-
- # ifndef menapp_h
- # define menapp_h
-
- # include "app.h"
-
- # define PARENT_CLASS Menu_App
-
- /************************************************************************
- * menu-driven application. Suitable for stdio environments.
- ************************************************************************/
- struct Menu_App:Generic_App
- {
- boolean init(void);
- void run(void);
- void query(char*,char[]);
- void respond(char*);
- boolean destroy(void);
- };
-
- # endif
-
-