ICU 64.2  64.2
tmutamt.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) 2009-2010, Google, International Business Machines Corporation and *
6  * others. All Rights Reserved. *
7  *******************************************************************************
8  */
9 
10 #ifndef __TMUTAMT_H__
11 #define __TMUTAMT_H__
12 
13 
19 #include "unicode/measure.h"
20 #include "unicode/tmunit.h"
21 
22 #if !UCONFIG_NO_FORMATTING
23 
25 
26 
34 public:
47  TimeUnitAmount(const Formattable& number,
48  TimeUnit::UTimeUnitFields timeUnitField,
49  UErrorCode& status);
50 
63  TimeUnitAmount(double amount, TimeUnit::UTimeUnitFields timeUnitField,
64  UErrorCode& status);
65 
66 
71  TimeUnitAmount(const TimeUnitAmount& other);
72 
73 
79 
80 
86  virtual UObject* clone() const;
87 
88 
93  virtual ~TimeUnitAmount();
94 
95 
102  virtual UBool operator==(const UObject& other) const;
103 
104 
111  UBool operator!=(const UObject& other) const;
112 
113 
125  static UClassID U_EXPORT2 getStaticClassID(void);
126 
127 
139  virtual UClassID getDynamicClassID(void) const;
140 
141 
147  const TimeUnit& getTimeUnit() const;
148 
154  TimeUnit::UTimeUnitFields getTimeUnitField() const;
155 };
156 
157 
158 
159 inline UBool
160 TimeUnitAmount::operator!=(const UObject& other) const {
161  return !operator==(other);
162 }
163 
165 
166 #endif /* #if !UCONFIG_NO_FORMATTING */
167 
168 #endif // __TMUTAMT_H__
169 //eof
170 //
virtual UObject * clone() const
Return a polymorphic clone of this object.
UTimeUnitFields
Constants for all the time units we supported.
Definition: tmunit.h:38
An amount of a specified unit, consisting of a number and a Unit.
Definition: measure.h:43
UBool operator==(const UObject &other) const
Equality operator.
void * UClassID
UClassID is used to identify classes without using the compiler's RTTI.
Definition: uobject.h:93
UBool operator!=(const UObject &other) const
Not-equality operator.
Definition: tmutamt.h:160
C++ API: time unit object.
#define U_I18N_API
Set to export library symbols from inside the i18n library, and to import them from outside...
Definition: utypes.h:301
#define U_NAMESPACE_BEGIN
This is used to begin a declaration of a public ICU C++ API.
Definition: uversion.h:137
Measurement unit for time units.
Definition: tmunit.h:32
UBool operator!=(const StringPiece &x, const StringPiece &y)
Global operator != for StringPiece.
Definition: stringpiece.h:218
C++ API: MeasureUnit object.
virtual UClassID getDynamicClassID(void) const
Returns a unique class ID POLYMORPHICALLY.
static UClassID getStaticClassID(void)
Return the class ID for this class.
Express a duration as a time unit and number.
Definition: tmutamt.h:33
#define U_NAMESPACE_END
This is used to end a declaration of a public ICU C++ API.
Definition: uversion.h:138
Measure & operator=(const Measure &other)
Assignment operator.
UErrorCode
Error code to replace exception handling, so that the code is compatible with all C++ compilers...
Definition: utypes.h:401
Formattable objects can be passed to the Format class or its subclasses for formatting.
Definition: fmtable.h:62
UObject is the common ICU "boilerplate" class.
Definition: uobject.h:223
int8_t UBool
The ICU boolean type.
Definition: umachine.h:225