1 /*
2    GNUstep ProjectCenter - http://www.gnustep.org/experience/ProjectCenter.html
3 
4    Copyright (C) 2001 Free Software Foundation
5 
6    This file is part of GNUstep.
7 
8    This application is free software; you can redistribute it and/or
9    modify it under the terms of the GNU General Public
10    License as published by the Free Software Foundation; either
11    version 2 of the License, or (at your option) any later version.
12 
13    This application is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16    Library General Public License for more details.
17 
18    You should have received a copy of the GNU General Public
19    License along with this library; if not, write to the Free
20    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
21 */
22 
23 #ifndef _PCINFOCONTROLLER_H
24 #define _PCINFOCONTROLLER_H
25 
26 #import <AppKit/AppKit.h>
27 
28 @interface PCInfoController : NSObject
29 {
30   id infoWindow;
31   id versionField;
32   NSDictionary *infoDict;
33 }
34 
35 - (id)init;
36 - (void)dealloc;
37 
38 - (void)showInfoWindow:(id)sender;
39 
40 @end
41 
42 #endif
43