| 142 | }; |
| 143 | |
| 144 | ~IStream() |
| 145 | { |
| 146 | if (m_use_iostream) |
| 147 | { |
| 148 | delete streami; |
| 149 | #ifdef LZ_WIN32_VC6 |
| 150 | ifb.close(); |
| 151 | #endif |
| 152 | } |
| 153 | else |
| 154 | { |
| 155 | if (ifile) |
| 156 | fclose(ifile); |
| 157 | } |
| 158 | }; |
| 159 | |
| 160 | bool m_use_iostream; |
| 161 | const char* m_filename; |