]>
git.saurik.com Git - apple/icu.git/blob - icuSources/i18n/unicode/measunit.h
2 **********************************************************************
3 * Copyright (c) 2004, International Business Machines
4 * Corporation and others. All Rights Reserved.
5 **********************************************************************
7 * Created: April 26, 2004
9 **********************************************************************
11 #ifndef __MEASUREUNIT_H__
12 #define __MEASUREUNIT_H__
14 #include "unicode/utypes.h"
16 #if !UCONFIG_NO_FORMATTING
18 #include "unicode/fmtable.h"
23 * A unit such as length, mass, volume, currency, etc. A unit is
24 * coupled with a numeric amount to produce a Measure.
26 * <p>This is an abstract class.
31 class U_I18N_API MeasureUnit
: public UObject
{
34 * Return a polymorphic clone of this object. The result will
35 * have the same class as returned by getDynamicClassID().
38 virtual UObject
* clone() const = 0;
44 virtual ~MeasureUnit();
47 * Equality operator. Return true if this object is equal
48 * to the given object.
51 virtual UBool
operator==(const UObject
& other
) const = 0;
55 * Default constructor.
63 // NOTE: There is no measunit.cpp. For implementation, see measure.cpp. [alan]
65 #endif // !UCONFIG_NO_FORMATTING
66 #endif // __MEASUREUNIT_H__