aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/icu/i18n/tztrans.cpp
blob: 71dcbd91d3809120f020f851afd39bb1e0e5662b (plain) (blame)
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
// © 2016 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html 
/* 
******************************************************************************* 
* Copyright (C) 2007-2012, International Business Machines Corporation and 
* others. All Rights Reserved. 
******************************************************************************* 
*/ 
 
#include "utypeinfo.h"  // for 'typeid' to work 
 
#include "unicode/utypes.h" 
 
#if !UCONFIG_NO_FORMATTING 
 
#include "unicode/tzrule.h" 
#include "unicode/tztrans.h" 
 
U_NAMESPACE_BEGIN 
 
UOBJECT_DEFINE_RTTI_IMPLEMENTATION(TimeZoneTransition) 
 
TimeZoneTransition::TimeZoneTransition(UDate time, const TimeZoneRule& from, const TimeZoneRule& to) 
: UObject(), fTime(time), fFrom(from.clone()), fTo(to.clone()) { 
} 
 
TimeZoneTransition::TimeZoneTransition() 
: UObject(), fTime(0), fFrom(NULL), fTo(NULL) { 
} 
 
TimeZoneTransition::TimeZoneTransition(const TimeZoneTransition& source) 
: UObject(), fTime(source.fTime), fFrom(NULL), fTo(NULL) { 
      if (source.fFrom != NULL) { 
          fFrom = source.fFrom->clone(); 
      } 
 
      if (source.fTo != NULL) { 
          fTo = source.fTo->clone(); 
      } 
} 
 
TimeZoneTransition::~TimeZoneTransition() { 
    if (fFrom != NULL) { 
        delete fFrom; 
    } 
    if (fTo != NULL) { 
        delete fTo; 
    } 
} 
 
TimeZoneTransition* 
TimeZoneTransition::clone(void) const { 
    return new TimeZoneTransition(*this); 
} 
 
TimeZoneTransition& 
TimeZoneTransition::operator=(const TimeZoneTransition& right) { 
    if (this != &right) { 
        fTime = right.fTime; 
        setFrom(*right.fFrom); 
        setTo(*right.fTo); 
    } 
    return *this; 
} 
 
UBool 
TimeZoneTransition::operator==(const TimeZoneTransition& that) const { 
    if (this == &that) { 
        return TRUE; 
    } 
    if (typeid(*this) != typeid(that)) { 
        return FALSE; 
    } 
    if (fTime != that.fTime) { 
        return FALSE; 
    } 
    if ((fFrom == NULL && that.fFrom == NULL) 
        || (fFrom != NULL && that.fFrom != NULL && *fFrom == *(that.fFrom))) { 
        if ((fTo == NULL && that.fTo == NULL) 
            || (fTo != NULL && that.fTo != NULL && *fTo == *(that.fTo))) { 
            return TRUE; 
        } 
    } 
    return FALSE; 
} 
 
UBool 
TimeZoneTransition::operator!=(const TimeZoneTransition& that) const { 
    return !operator==(that); 
} 
 
void 
TimeZoneTransition::setTime(UDate time) { 
    fTime = time; 
} 
 
void 
TimeZoneTransition::setFrom(const TimeZoneRule& from) { 
    if (fFrom != NULL) { 
        delete fFrom; 
    } 
    fFrom = from.clone(); 
} 
 
void 
TimeZoneTransition::adoptFrom(TimeZoneRule* from) { 
    if (fFrom != NULL) { 
        delete fFrom; 
    } 
    fFrom = from; 
} 
 
void 
TimeZoneTransition::setTo(const TimeZoneRule& to) { 
    if (fTo != NULL) { 
        delete fTo; 
    } 
    fTo = to.clone(); 
} 
 
void 
TimeZoneTransition::adoptTo(TimeZoneRule* to) { 
    if (fTo != NULL) { 
        delete fTo; 
    } 
    fTo = to; 
} 
 
UDate 
TimeZoneTransition::getTime(void) const { 
    return fTime; 
} 
 
const TimeZoneRule* 
TimeZoneTransition::getTo(void) const { 
    return fTo; 
} 
 
const TimeZoneRule* 
TimeZoneTransition::getFrom(void) const { 
    return fFrom; 
} 
 
U_NAMESPACE_END 
 
#endif 
 
//eof