#include <ParseUtils.h>
Definition at line 39 of file ParseUtils.h.
◆ StreamBuffer()
| Minisat::StreamBuffer::StreamBuffer |
( |
gzFile | i | ) |
|
|
inlineexplicit |
Definition at line 51 of file ParseUtils.h.
51: in(i), pos(0), size(0) { assureLookahead(); }
◆ operator*()
| int Minisat::StreamBuffer::operator* |
( |
| ) |
const |
|
inline |
Definition at line 53 of file ParseUtils.h.
53{ return (pos >= size) ? EOF : buf[pos]; }
◆ operator++()
| void Minisat::StreamBuffer::operator++ |
( |
| ) |
|
|
inline |
Definition at line 54 of file ParseUtils.h.
54{ pos++; assureLookahead(); }
◆ position()
| int Minisat::StreamBuffer::position |
( |
| ) |
const |
|
inline |
The documentation for this class was generated from the following file: