00001
00002
00003
00004
00005
00006
00007 #import <Foundation/NSTimeZone.h>
00008
00009 @interface NSLocalTimeZone : NSTimeZone
00010 {
00011 }
00012
00013 - (id)name;
00014 - (id)data;
00015 - (int)secondsFromGMTForDate:(id)fp8;
00016 - (id)abbreviationForDate:(id)fp8;
00017 - (BOOL)isDaylightSavingTimeForDate:(id)fp8;
00018 - (double)_secondsFromGMTForAbsoluteTime:(double)fp8;
00019 - (id)_abbreviationForAbsoluteTime:(double)fp8;
00020 - (BOOL)_isDaylightSavingTimeForAbsoluteTime:(double)fp8;
00021 - (id)description;
00022 - (id)retain;
00023 - (void)release;
00024 - (unsigned int)retainCount;
00025 - (id)copyWithZone:(struct _NSZone *)fp8;
00026 - (void)encodeWithCoder:(id)fp8;
00027 - (id)initWithCoder:(id)fp8;
00028 - (Class)classForCoder;
00029
00030 @end
00031