mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-23 19:51:00 +00:00
17 lines
298 B
C
17 lines
298 B
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
|