apps-gorm/GormPrefs/GormGeneralPref.h
Gregory John Casamento 738aefb672 Added documentation.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@21573 72102866-910b-0410-8b05-ffd578937521
2005-07-30 13:22:42 +00:00

33 lines
478 B
Objective-C

#ifndef INCLUDED_GormGeneralPref_h
#define INCLUDED_GormGeneralPref_h
#include <Foundation/NSObject.h>
#include <AppKit/NSView.h>
@interface GormGeneralPref : NSObject
{
id window;
id backupButton;
id interfaceMatrix;
id _view;
}
/**
* View to be shown.
*/
- (NSView *) view;
/**
* Should create a backup file.
*/
- (void) backupAction: (id)sender;
/**
* Show the classes view as a browser or an outline.
*/
- (void) classesAction: (id)sender;
@end
#endif