home *** CD-ROM | disk | FTP | other *** search
- /*
- * Written by Guy Roberts of Object Skills Ltd, drifting
- * in cyberspace without a domain or email address right
- * now.
- * May 7 1993. You can use this as a base for a better application
- * as long as it is made publically available.
- */
-
- #import <appkit/appkit.h>
- #import "Translator.h"
- #import "InfoView.h"
- #import "Preferences.h"
-
- #import <streams/streams.h>
- #import <sys/stat.h>
-
- @interface Controller:Object
- {
- id openReq;
- id infoview;
- id headingNames;
- id preferences;
- BOOL launchEdit;
- char *lastDirectoryUsed;
- }
-
- - createATranslator: (char *) name;
- - open: sender;
- - showInfoPanel: sender;
- - showPreferences:sender;
- - endAllWars: sender;
- - free;
-
- @end
-