Because the constructors are protected and private, this class cannot be directly instantiated: only objects of derived classes can be created.
ios_base also declares an assignment operator member function. Like the copy constructor, this function is also private:
| 1 2 3 |
|
This effectively also prevents ios_base objects to be copied.
