00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 #import "NSCodingProtocol.h"
00010 #import "NSCopyingProtocol.h"
00011
00012 @interface NSNotification : NSObject <NSCopying, NSCoding>
00013 {
00014 }
00015
00016 + (id)allocWithZone:(struct _NSZone *)fp8;
00017 + (id)notificationWithName:(id)fp8 object:(id)fp12;
00018 + (id)notificationWithName:(id)fp8 object:(id)fp12 userInfo:(id)fp16;
00019 - (id)name;
00020 - (id)object;
00021 - (id)userInfo;
00022 - (id)description;
00023 - (unsigned int)hash;
00024 - (BOOL)isEqual:(id)fp8;
00025 - (id)copyWithZone:(struct _NSZone *)fp8;
00026 - (void)encodeWithCoder:(id)fp8;
00027 - (id)initWithCoder:(id)fp8;
00028 - (Class)classForCoder;
00029 - (id)init;
00030 - (id)initWithName:(id)fp8 object:(id)fp12 userInfo:(id)fp16;
00031
00032 @end
00033