------------------------------------------------------------------------------
| 148 | |
| 149 | //------------------------------------------------------------------------------ |
| 150 | void FileStreamReader::close() |
| 151 | { |
| 152 | if (this->Open) |
| 153 | { |
| 154 | this->Open = false; |
| 155 | this->Eof = false; |
| 156 | this->Pos = FileStreamReader::BUFF_SIZE; |
| 157 | this->BuffEnd = FileStreamReader::BUFF_SIZE; |
| 158 | this->FileName = std::string(); |
| 159 | |
| 160 | gzclose(this->file); |
| 161 | } |
| 162 | } |
| 163 | |
| 164 | //------------------------------------------------------------------------------ |
| 165 | bool FileStreamReader::operator!() const |
no test coverage detected