]>
git.saurik.com Git - apple/icu.git/blob - icuSources/common/dtintrv.cpp
1 /*******************************************************************************
2 * Copyright (C) 2008, International Business Machines Corporation and
3 * others. All Rights Reserved.
4 *******************************************************************************
8 *******************************************************************************
13 #include "unicode/dtintrv.h"
18 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(DateInterval
)
20 //DateInterval::DateInterval(){}
23 DateInterval::DateInterval(UDate from
, UDate to
)
29 DateInterval::~DateInterval(){}
32 DateInterval::DateInterval(const DateInterval
& other
)
39 DateInterval::operator=(const DateInterval
& other
) {
40 if ( this != &other
) {
41 fromDate
= other
.fromDate
;
42 toDate
= other
.toDate
;
49 DateInterval::clone() const {
50 return new DateInterval(*this);
55 DateInterval::operator==(const DateInterval
& other
) const {
56 return ( fromDate
== other
.fromDate
&& toDate
== other
.toDate
);