Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The member class provides a unique facet identification used as an index for looking up facets in a locale.
class id { 
protected: 
   id( ); 
private: 
   id(const id&)              // not defined 
   void operator=(const id&)  // not defined 
   };
Remarks
The member class describes the static member object required by each unique locale facet. Note that you cannot copy or assign an object of class id.
Requirements
Header: <locale>
Namespace: std
See Also
Reference
Thread Safety in the Standard C++ Library