1 // © 2016 and later: Unicode, Inc. and others.
2 // License & terms of use: http://www.unicode.org/copyright.html
3 /*
4 **********************************************************************
5 * Copyright (c) 2004, International Business Machines
6 * Corporation and others.  All Rights Reserved.
7 **********************************************************************
8 * Author: Alan Liu
9 * Created: April 26, 2004
10 * Since: ICU 3.0
11 **********************************************************************
12 */
13 #include "unicode/utypes.h"
14 
15 #if !UCONFIG_NO_FORMATTING
16 
17 #include "unicode/curramt.h"
18 #include "unicode/currunit.h"
19 
20 U_NAMESPACE_BEGIN
21 
CurrencyAmount(const Formattable & amount,ConstChar16Ptr isoCode,UErrorCode & ec)22 CurrencyAmount::CurrencyAmount(const Formattable& amount, ConstChar16Ptr isoCode,
23                                UErrorCode& ec) :
24     Measure(amount, new CurrencyUnit(isoCode, ec), ec) {
25 }
26 
CurrencyAmount(double amount,ConstChar16Ptr isoCode,UErrorCode & ec)27 CurrencyAmount::CurrencyAmount(double amount, ConstChar16Ptr isoCode,
28                                UErrorCode& ec) :
29     Measure(Formattable(amount), new CurrencyUnit(isoCode, ec), ec) {
30 }
31 
CurrencyAmount(const CurrencyAmount & other)32 CurrencyAmount::CurrencyAmount(const CurrencyAmount& other) :
33     Measure(other) {
34 }
35 
operator =(const CurrencyAmount & other)36 CurrencyAmount& CurrencyAmount::operator=(const CurrencyAmount& other) {
37     Measure::operator=(other);
38     return *this;
39 }
40 
clone() const41 CurrencyAmount* CurrencyAmount::clone() const {
42     return new CurrencyAmount(*this);
43 }
44 
~CurrencyAmount()45 CurrencyAmount::~CurrencyAmount() {
46 }
47 
48 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(CurrencyAmount)
49 
50 U_NAMESPACE_END
51 
52 #endif // !UCONFIG_NO_FORMATTING
53