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