xref: /haiku/headers/private/libroot/locale/ICULocaleconvData.h (revision 4466b89c65970de4c7236ac87faa2bee4589f413)
1 /*
2  * Copyright 2010, Oliver Tappe, zooey@hirschkaefer.de.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef _ICU_LOCALECONV_DATA_H
6 #define _ICU_LOCALECONV_DATA_H
7 
8 
9 #include "ICUCategoryData.h"
10 
11 #include <unicode/decimfmt.h>
12 
13 
14 namespace BPrivate {
15 namespace Libroot {
16 
17 
18 typedef DecimalFormatSymbols::ENumberFormatSymbol FormatSymbol;
19 
20 class ICULocaleconvData : public ICUCategoryData {
21 	typedef	ICUCategoryData		inherited;
22 
23 protected:
24 			status_t			_SetLocaleconvEntry(
25 									const DecimalFormatSymbols* formatSymbols,
26 									char* destination, FormatSymbol symbol,
27 									const char* defaultValue = "");
28 };
29 
30 
31 }	// namespace Libroot
32 }	// namespace BPrivate
33 
34 
35 #endif	// _ICU_LOCALECONV_DATA_H
36