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 <_foundation_unicode/utypes.h>
#if !UCONFIG_NO_FORMATTING
#include <_foundation_unicode/tzrule.h>
#include <_foundation_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(nullptr), fTo(nullptr) {
}
TimeZoneTransition::TimeZoneTransition(const TimeZoneTransition& source)
: UObject(), fTime(source.fTime), fFrom(nullptr), fTo(nullptr) {
if (source.fFrom != nullptr) {
fFrom = source.fFrom->clone();
}
if (source.fTo != nullptr) {
fTo = source.fTo->clone();
}
}
TimeZoneTransition::~TimeZoneTransition() {
if (fFrom != nullptr) {
delete fFrom;
}
if (fTo != nullptr) {
delete fTo;
}
}
TimeZoneTransition*
TimeZoneTransition::clone() 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;
}
bool
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 == nullptr && that.fFrom == nullptr)
|| (fFrom != nullptr && that.fFrom != nullptr && *fFrom == *(that.fFrom))) {
if ((fTo == nullptr && that.fTo == nullptr)
|| (fTo != nullptr && that.fTo != nullptr && *fTo == *(that.fTo))) {
return true;
}
}
return false;
}
bool
TimeZoneTransition::operator!=(const TimeZoneTransition& that) const {
return !operator==(that);
}
void
TimeZoneTransition::setTime(UDate time) {
fTime = time;
}
void
TimeZoneTransition::setFrom(const TimeZoneRule& from) {
if (fFrom != nullptr) {
delete fFrom;
}
fFrom = from.clone();
}
void
TimeZoneTransition::adoptFrom(TimeZoneRule* from) {
if (fFrom != nullptr) {
delete fFrom;
}
fFrom = from;
}
void
TimeZoneTransition::setTo(const TimeZoneRule& to) {
if (fTo != nullptr) {
delete fTo;
}
fTo = to.clone();
}
void
TimeZoneTransition::adoptTo(TimeZoneRule* to) {
if (fTo != nullptr) {
delete fTo;
}
fTo = to;
}
UDate
TimeZoneTransition::getTime() const {
return fTime;
}
const TimeZoneRule*
TimeZoneTransition::getTo() const {
return fTo;
}
const TimeZoneRule*
TimeZoneTransition::getFrom() const {
return fFrom;
}
U_NAMESPACE_END
#endif
//eof
|