xref: /haiku/headers/private/libroot/locale/ICULocaleconvData.h (revision 675ffabd70492a962f8c0288a32208c22ce5de18)
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 
16 
17 typedef DecimalFormatSymbols::ENumberFormatSymbol FormatSymbol;
18 
19 class ICULocaleconvData : public ICUCategoryData {
20 	typedef	ICUCategoryData		inherited;
21 
22 protected:
23 			status_t			_SetLocaleconvEntry(
24 									const DecimalFormatSymbols* formatSymbols,
25 									char* destination, FormatSymbol symbol,
26 									const char* defaultValue = "");
27 };
28 
29 
30 }	// namespace BPrivate
31 
32 
33 #endif	// _ICU_LOCALECONV_DATA_H
34