1 #import <AppKit/AppKit.h>
2 
3 @interface AppController : NSObject
4 {
5 	id inputPanel;
6 	id filtersPanel;
7 }
8 
9 - (void) showInputPanel: (id) sender;
10 - (void) showFiltersPanel: (id) sender;
11 
12 @end
13 
14