mirror of
https://review.haiku-os.org/haiku
synced 2025-01-26 08:17:59 +01:00
34 lines
669 B
C
34 lines
669 B
C
|
/*
|
||
|
* Copyright 2010, Oliver Tappe, zooey@hirschkaefer.de.
|
||
|
* Distributed under the terms of the MIT License.
|
||
|
*/
|
||
|
#ifndef _ICU_LOCALECONV_DATA_H
|
||
|
#define _ICU_LOCALECONV_DATA_H
|
||
|
|
||
|
|
||
|
#include "ICUCategoryData.h"
|
||
|
|
||
|
#include <unicode/decimfmt.h>
|
||
|
|
||
|
|
||
|
namespace BPrivate {
|
||
|
|
||
|
|
||
|
typedef DecimalFormatSymbols::ENumberFormatSymbol FormatSymbol;
|
||
|
|
||
|
class ICULocaleconvData : public ICUCategoryData {
|
||
|
typedef ICUCategoryData inherited;
|
||
|
|
||
|
protected:
|
||
|
status_t _SetLocaleconvEntry(
|
||
|
const DecimalFormatSymbols* formatSymbols,
|
||
|
char* destination, FormatSymbol symbol,
|
||
|
const char* defaultValue = "");
|
||
|
};
|
||
|
|
||
|
|
||
|
} // namespace BPrivate
|
||
|
|
||
|
|
||
|
#endif // _ICU_LOCALECONV_DATA_H
|