mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-25 11:51:22 +00:00
21 lines
267 B
Mathematica
21 lines
267 B
Mathematica
|
#import <AppKit/NSTreeController.h>
|
||
|
|
||
|
@implementation NSTreeController
|
||
|
|
||
|
- (id) initWithCoder: (NSCoder *)coder
|
||
|
{
|
||
|
return self;
|
||
|
}
|
||
|
|
||
|
- (void) encodeWithCoder: (NSCoder *)coder
|
||
|
{
|
||
|
// Do nothing...
|
||
|
}
|
||
|
|
||
|
- (id) copyWithZone: (NSZone *)zone
|
||
|
{
|
||
|
return [self retain];
|
||
|
}
|
||
|
|
||
|
@end
|