forked from woohj70/iPhotoDiary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMCLunarDate.m
51 lines (42 loc) · 1004 Bytes
/
MCLunarDate.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
//
// MCLunarDate.m
// iPhotoDiary
//
// Created by HYOUNG JUN WOO on 10. 4. 30..
// Copyright 2010 Mazdah.com. All rights reserved.
//
#import "MCLunarDate.h"
@implementation MCLunarDate
@synthesize yearLunar;
@synthesize yearDangi;
@synthesize lunarMonth;
@synthesize lunarDay;
@synthesize lunarDayOfWeek;
@synthesize yoondal;
@synthesize currentYearGapja;
@synthesize dayOfWeek;
@synthesize dayOfWeekGapja;
@synthesize monthOfYearGapja;
@synthesize currentYearDdi;
@synthesize currentYearGapjaChinese;
@synthesize dayOfWeekChinese;
@synthesize dayOfWeekGapjaChinese;
@synthesize monthOfYearGapjaChinese;
- (id) init {
if (![super init])
return nil;
return self;
}
- (void)dealloc {
[currentYearGapja release];
[dayOfWeek release];
[dayOfWeekGapja release];
[monthOfYearGapja release];
[currentYearDdi release];
[currentYearGapjaChinese release];
[dayOfWeekChinese release];
[dayOfWeekGapjaChinese release];
[monthOfYearGapjaChinese release];
[super dealloc];
}
@end