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 <defaults/defaults.h>
- #import <objc/Object.h>
- #import <assert.h>
- #define OWNER "ManPagesFromHeaders"
-
-
- @interface Preferences:Object
- {
- id inspectorPanel;
- id directoryForm;
- id autoEditLaunchSwitch;
- BOOL launchEditAutomatically;
- }
-
- - init;
- - showPreferencePanel: sender;
- - launchOpenPanel: sender;
- - toggleEditDefault: sender;
- - setManPageDirectory: sender;
- - free;
-
- @end
-
-