ICU 75.1 75.1
Loading...
Searching...
No Matches
dtintrv.h
Go to the documentation of this file.
1// © 2016 and later: Unicode, Inc. and others.
2// License & terms of use: http://www.unicode.org/copyright.html
3/*
4*******************************************************************************
5* Copyright (C) 2008-2009, International Business Machines Corporation and
6* others. All Rights Reserved.
7*******************************************************************************
8*
9* File DTINTRV.H
10*
11*******************************************************************************
12*/
13
14#ifndef __DTINTRV_H__
15#define __DTINTRV_H__
16
17#include "unicode/utypes.h"
18
19#if U_SHOW_CPLUSPLUS_API
20
21#include "unicode/uobject.h"
22
28U_NAMESPACE_BEGIN
29
30
37public:
38
45 DateInterval(UDate fromDate, UDate toDate);
46
51 virtual ~DateInterval();
52
58 inline UDate getFromDate() const;
59
65 inline UDate getToDate() const;
66
67
79 static UClassID U_EXPORT2 getStaticClassID();
80
92 virtual UClassID getDynamicClassID() const override;
93
99
105
111 virtual bool operator==(const DateInterval& other) const;
112
118 inline bool operator!=(const DateInterval& other) const;
119
120
127 virtual DateInterval* clone() const;
128
129private:
133 DateInterval() = delete;
134
135 UDate fromDate;
136 UDate toDate;
137
138} ;// end class DateInterval
139
140
141inline UDate
142DateInterval::getFromDate() const {
143 return fromDate;
144}
145
146
147inline UDate
148DateInterval::getToDate() const {
149 return toDate;
150}
151
152
153inline bool
154DateInterval::operator!=(const DateInterval& other) const {
155 return ( !operator==(other) );
156}
157
158
159U_NAMESPACE_END
160
161#endif /* U_SHOW_CPLUSPLUS_API */
162
163#endif
This class represents a date interval.
Definition dtintrv.h:36
virtual ~DateInterval()
destructor
virtual bool operator==(const DateInterval &other) const
Equality operator.
virtual DateInterval * clone() const
clone this object.
DateInterval(const DateInterval &other)
Copy constructor.
static UClassID getStaticClassID()
Return the class ID for this class.
virtual UClassID getDynamicClassID() const override
Returns a unique class ID POLYMORPHICALLY.
DateInterval & operator=(const DateInterval &)
Default assignment operator.
DateInterval(UDate fromDate, UDate toDate)
Construct a DateInterval given a from date and a to date.
UObject is the common ICU "boilerplate" class.
Definition uobject.h:223
bool operator!=(const StringPiece &x, const StringPiece &y)
Global operator != for StringPiece.
C++ API: Common ICU base class UObject.
void * UClassID
UClassID is used to identify classes without using the compiler's RTTI.
Definition uobject.h:96
Basic definitions for ICU, for both C and C++ APIs.
#define U_COMMON_API
Set to export library symbols from inside the common library, and to import them from outside.
Definition utypes.h:300
double UDate
Date and Time data type.
Definition utypes.h:203