mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-24 03:51:22 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@14193 72102866-910b-0410-8b05-ffd578937521
16 lines
298 B
Objective-C
16 lines
298 B
Objective-C
/* All Rights reserved */
|
|
|
|
#import <AppKit/AppKit.h>
|
|
#import "Gorm.h"
|
|
|
|
@class GormClassManager;
|
|
|
|
@interface GormCustomClassInspector : IBInspector
|
|
{
|
|
id browser;
|
|
GormClassManager *_classManager;
|
|
id _currentSelection;
|
|
NSString *_currentSelectionClassName;
|
|
}
|
|
- (void) select: (id)sender;
|
|
@end
|