1 /* vim: set ft=objc ts=4 nowrap: */
2 /* All Rights reserved */
3 
4 #ifndef GENERALVIEW_H_INCLUDED
5 #define GENERALVIEW_H_INCLUDED
6 
7 #include <AppKit/AppKit.h>
8 
9 @interface GeneralView : NSObject
10 {
11   id view;
12   id window;
13   id exitMatrix;
14   id deviceField;
15 }
16 
17 - (id) init;
18 - (id) initWithNibName: (NSString *) nibName;
19 
20 - (void) saveChanges;
21 
22 - (NSString *) name;
23 - (NSView *) view;
24 
25 + (id) singleInstance;
26 
27 @end
28 
29 #endif
30