| 1314 | |
| 1315 | bool fail() const { return state & (ios::badbit | ios::failbit); } |
| 1316 | bool good() const { return state == 0; } |
| 1317 | void clear(short n = 0) { state = n; } |
| 1318 | short exceptions() { return exceptmask; } |
| 1319 | short exceptions(short mask) { short prev = exceptmask; exceptmask = mask; setstate(0, "CAutoFile"); return prev; } |
no outgoing calls
no test coverage detected