money_put::money_put

The constructor for objects of type money_put.

explicit money_put( 
   size_t _Refs = 0 
);

Parameters

  • _Refs
    Integer value used to specify the type of memory management for the object.

Remarks

The possible values for the _Refs parameter and their significance are:

  • 0: the lifetime of the object is managed by the locales that contain it.

  • 1: the lifetime of the object must be manually managed.

  • > 0: these values are not defined.

No direct examples are possible, because the destructor is protected.

The constructor initializes its base object with locale::facet(_Refs).

Requirements

Header: <locale>

Namespace: std

See Also

Reference

money_put Class