mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-25 11:41:06 +00:00
* Headers/AppKit/NSTreeNode.h * Source/NSTreeController.m: Add tree controller skeleton. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@34847 72102866-910b-0410-8b05-ffd578937521
20 lines
267 B
Objective-C
20 lines
267 B
Objective-C
#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
|