|
Evaluates the formatter
object.
bool formatter::operator !();
None
Returns true
if it's specified output file/stream is valid, false
otherwise.
This operation is used to verify the state of parser's
internal input stream. The input stream/file is specified in parser's
constructor. If a file or stream is specified which is not opened or in a bad state, this operation will return false. If the stream or file is open
and in a good state, the operation will return true.
This operation is handy for verifying the state of the parser
object before using it to parse a file or input stream.
Constant