Example #1
0
bool
OutputDevice::ok() {
    return getOStream().good();
}
Example #2
0
void
OutputDevice::setPrecision(unsigned int precision) {
    getOStream() << std::setprecision(precision);
}
Example #3
0
void RDOResults::width(std::size_t w)
{
    getOStream().width(w);
}