std::ios_base::pword (3) - Linux Manuals
std::ios_base::pword: std::ios_base::pword
NAME
std::ios_base::pword - std::ios_base::pword
Synopsis
void*& pword( int index );
First, allocates or resizes the private storage (dynamic array of void* or another indexable data structure) sufficiently to make index a valid index, then returns a reference to the void* element of the private storage with the index index.
The reference may be invalidated by any operation on this ios_base object, including another call to pword(), but the stored values are retained, so that reading from pword(index) with the same index later will produce the same value (until the next call to copyfmt()). The value can be used for any purpose. The index of the element must be obtained by xalloc(), otherwise the behavior is undefined. New elements are initialized to NULL.
If allocation fails, calls std::basic_ios<>::setstate(badbit) which may throw std::ios_base::failure
Parameters
index - index value of the element
Return value
A reference to the element.
Exceptions
May throw std::ios_base::failure when setting the badbit.
Notes
If the pointers stored in pword require management, register_callback() may be used to install handlers that execute deep copy or deallocation as needed.
Example
Uses base class pword storage for runtime type identification of derived stream objects.
// Run this code
Output:
See also
iword (public member function)
xalloc returns a program-wide unique integer that is safe to use as index to pword() and iword()
[static]