00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 #import "NSCodingProtocol.h"
00010 #import "NSCopyingProtocol.h"
00011
00012 @interface NSDateComponents : NSObject <NSCopying, NSCoding>
00013 {
00014 }
00015
00016 + (id)allocWithZone:(struct _NSZone *)fp8;
00017 - (id)init;
00018 - (id)copyWithZone:(struct _NSZone *)fp8;
00019 - (void)encodeWithCoder:(id)fp8;
00020 - (id)initWithCoder:(id)fp8;
00021 - (id)calendar;
00022 - (int)era;
00023 - (int)year;
00024 - (int)month;
00025 - (int)day;
00026 - (int)hour;
00027 - (int)minute;
00028 - (int)second;
00029 - (int)week;
00030 - (int)weekday;
00031 - (int)weekdayOrdinal;
00032 - (void)setCalendar:(id)fp8;
00033 - (void)setEra:(int)fp8;
00034 - (void)setYear:(int)fp8;
00035 - (void)setMonth:(int)fp8;
00036 - (void)setDay:(int)fp8;
00037 - (void)setHour:(int)fp8;
00038 - (void)setMinute:(int)fp8;
00039 - (void)setSecond:(int)fp8;
00040 - (void)setWeek:(int)fp8;
00041 - (void)setWeekday:(int)fp8;
00042 - (void)setWeekdayOrdinal:(int)fp8;
00043
00044 @end
00045