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