C++ Locale Library - category
Description
It is a locale category and this member type describes a category of facets.
Declaration
Following is the declaration for std::locale::category.
C++98
typedef int category;
C++11
typedef int category;
Parameters
none
Return Value
none
| category | facets |
|---|---|
| locale::collate | collate |
| locale::ctype | ctype, codecvt |
| locale::monetary | moneypunct, money_get, money_put |
| locale::numeric | numpunct, num_get, num_put |
| locale::time | time_get, time_put |
| locale::messages | messages |
| locale::all | all of the above |
| locale::none | none of the above (defined as 0). |
locale.htm
Advertisements