mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-24 12:01:16 +00:00
12 lines
210 B
C
12 lines
210 B
C
|
#include <AppKit/NSWindow.h>
|
||
|
#include <AppKit/NSView.h>
|
||
|
|
||
|
@interface GormViewWindow : NSWindow
|
||
|
{
|
||
|
NSView *_view;
|
||
|
}
|
||
|
- (id) initWithView: (NSView *)view;
|
||
|
- (void) setView: (NSView *) view;
|
||
|
- (NSView *)view;
|
||
|
@end
|