ICU 72.1 72.1
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(void);
80
92 virtual UClassID getDynamicClassID(void) const override;
93
94
100
106
112 virtual bool operator==(const DateInterval& other) const;
113
119 inline bool operator!=(const DateInterval& other) const;
120
121
128 virtual DateInterval* clone() const;
129
130private:
134 DateInterval() = delete;
135
136 UDate fromDate;
137 UDate toDate;
138
139} ;// end class DateInterval
140
141
142inline UDate
143DateInterval::getFromDate() const {
144 return fromDate;
145}
146
147
148inline UDate
149DateInterval::getToDate() const {
150 return toDate;
151}
152
153
154inline bool
156 return ( !operator==(other) );
157}
158
159
160U_NAMESPACE_END
161
162#endif /* U_SHOW_CPLUSPLUS_API */
163
164#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.
virtual UClassID getDynamicClassID(void) const override
Returns a unique class ID POLYMORPHICALLY.
DateInterval & operator=(const DateInterval &)
Default assignment operator.
static UClassID getStaticClassID(void)
Return the class ID for this class.
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.
Definition: stringpiece.h:335
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