// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_PAYMENTS_CORE_CURRENCY_FORMATTER_H_ #define COMPONENTS_PAYMENTS_CORE_CURRENCY_FORMATTER_H_ #include <memory> #include <string> #include "third_party/icu/source/common/unicode/locid.h" #include "third_party/icu/source/common/unicode/unistr.h" #include "third_party/icu/source/i18n/unicode/numfmt.h" namespace payments { // Currency formatter for amounts, according to a currency code, which typically // adheres to [ISO4217] (for example, "USD" for US Dollars). class CurrencyFormatter { … }; } // namespace payments #endif // COMPONENTS_PAYMENTS_CORE_CURRENCY_FORMATTER_H_