C++ Locale Library - moneypunct



Description

It is a standard facet provides information about the format of monetary values.

Declaration

Following is the declaration for std::moneypunct.

C++98

	
template <class charT, bool International = false> class moneypunct;

C++11

template <class charT, bool International = false> class moneypunct;

Parameters

  • charT − It is a character type.

  • International − The representation uses an international format then it is true. If false (the default value), the representation may use a non-international format (such as using the dollar.

Return Value

none

locale.htm
Advertisements