ICU 64.2  64.2
nounit.h
Go to the documentation of this file.
1 // © 2017 and later: Unicode, Inc. and others.
2 // License & terms of use: http://www.unicode.org/copyright.html
3 /*
4  *******************************************************************************
5  * Copyright (C) 2009-2017, International Business Machines Corporation, *
6  * Google, and others. All Rights Reserved. *
7  *******************************************************************************
8  */
9 
10 #ifndef __NOUNIT_H__
11 #define __NOUNIT_H__
12 
13 #include "unicode/utypes.h"
14 
15 #if !UCONFIG_NO_FORMATTING
16 #ifndef U_HIDE_DRAFT_API
17 
18 #include "unicode/measunit.h"
19 
26 
32 class U_I18N_API NoUnit: public MeasureUnit {
33 public:
40  static NoUnit U_EXPORT2 base();
41 
48  static NoUnit U_EXPORT2 percent();
49 
56  static NoUnit U_EXPORT2 permille();
57 
62  NoUnit(const NoUnit& other);
63 
68  virtual ~NoUnit();
69 
75  virtual UObject* clone() const;
76 
85  virtual UClassID getDynamicClassID() const;
86 
93  static UClassID U_EXPORT2 getStaticClassID();
94 
95 private:
100  NoUnit(const char* subtype);
101 
102 };
103 
105 
106 #endif /* U_HIDE_DRAFT_API */
107 #endif /* #if !UCONFIG_NO_FORMATTING */
108 
109 #endif // __NOUNIT_H__
110 //eof
111 //
virtual UObject * clone() const
Returns a polymorphic clone of this object.
Dimensionless unit for percent and permille.
Definition: nounit.h:32
A unit such as length, mass, volume, currency, etc.
Definition: measunit.h:38
static UClassID getStaticClassID(void)
Return the class ID for this class.
void * UClassID
UClassID is used to identify classes without using the compiler's RTTI.
Definition: uobject.h:93
#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
C++ API: A unit for measuring a quantity.
virtual UClassID getDynamicClassID(void) const
Returns a unique class ID POLYMORPHICALLY.
#define U_NAMESPACE_END
This is used to end a declaration of a public ICU C++ API.
Definition: uversion.h:138
Basic definitions for ICU, for both C and C++ APIs.
UObject is the common ICU "boilerplate" class.
Definition: uobject.h:223