+/**
+ The category of locale settings. See wxLocale::GetInfo().
+*/
+enum wxLocaleCategory
+{
+ /// (any) numbers
+ wxLOCALE_CAT_NUMBER,
+
+ /// date/time
+ wxLOCALE_CAT_DATE,
+
+ /// monetary value
+ wxLOCALE_CAT_MONEY,
+
+ wxLOCALE_CAT_MAX
+};
+
+/**
+ The values understood by wxLocale::GetInfo().
+*/
+enum wxLocaleInfo
+{
+ /// The thounsands separator
+ wxLOCALE_THOUSANDS_SEP,
+
+ /// The character used as decimal point
+ wxLOCALE_DECIMAL_POINT
+};
+
+