| 1699 | } |
| 1700 | |
| 1701 | void Reset() |
| 1702 | { |
| 1703 | // this->FileName = ""; |
| 1704 | this->File = nullptr; |
| 1705 | // this->ZStatus = Z_OK; |
| 1706 | this->Z.zalloc = Z_NULL; |
| 1707 | this->Z.zfree = Z_NULL; |
| 1708 | this->Z.opaque = Z_NULL; |
| 1709 | // this->LineNumber = 0; |
| 1710 | this->IsCompressed = false; |
| 1711 | #if VTK_FOAMFILE_RECOGNIZE_LINEHEAD |
| 1712 | this->WasNewline = true; |
| 1713 | #endif |
| 1714 | |
| 1715 | this->Inbuf = nullptr; |
| 1716 | this->Outbuf = nullptr; |
| 1717 | // this->BufPtr = nullptr; |
| 1718 | // this->BufEndPtr = nullptr; |
| 1719 | } |
| 1720 | |
| 1721 | public: |
| 1722 | #if VTK_OPENFOAM_TIME_PROFILING |
no outgoing calls
no test coverage detected