Wrapper for a std::string, for formatted ostream output.
An Str object has std::string value, and an integer output field width. The << operator for an Str object uses the specified width. The value and width may both be specified as parameters to a constructor. If the width is not specified as a constructor parameter, it is set within the constructor to a default value given by Format::defaultWidth().
An Str object may be passed to an ostream as a temporary object. For example, the expression:
std::cout <<
Str(
"Hello") <<
Str(
"World", 20) << std::endl;
outputs "Hello" using the default width, followed by "World" in a field of width 20.
Definition at line 36 of file Str.h.