00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 #import "NSCodingProtocol.h"
00010 #import "NSCopyingProtocol.h"
00011
00012 @interface NSNull : NSObject <NSCopying, NSCoding>
00013 {
00014 }
00015
00016 + (id)allocWithZone:(struct _NSZone *)fp8;
00017 + (id)null;
00018 - (id)retain;
00019 - (void)release;
00020 - (unsigned int)retainCount;
00021 - (id)autorelease;
00022 - (void)dealloc;
00023 - (void)finalize;
00024 - (id)copy;
00025 - (id)copyWithZone:(struct _NSZone *)fp8;
00026 - (id)description;
00027 - (void)encodeWithCoder:(id)fp8;
00028 - (id)initWithCoder:(id)fp8;
00029
00030 @end
00031