| 1914 | int ReadNext(); |
| 1915 | |
| 1916 | void PutBack(int c) |
| 1917 | { |
| 1918 | if (--this->Superclass::BufPtr < this->Superclass::Outbuf) |
| 1919 | { |
| 1920 | this->ThrowDuplicatedPutBackException(); |
| 1921 | } |
| 1922 | *this->Superclass::BufPtr = static_cast<unsigned char>(c); |
| 1923 | } |
| 1924 | |
| 1925 | // get a character |
| 1926 | int Getc() |
no test coverage detected