Attempt to open file (without gzip fallback) and read FoamFile header
| 3208 | |
| 3209 | // Attempt to open file (without gzip fallback) and read FoamFile header |
| 3210 | bool Open(const std::string& file) { return this->OpenFile(file, false); } |
| 3211 | |
| 3212 | // Attempt to open file (with gzip fallback) and read FoamFile header |
| 3213 | bool OpenOrGzip(const std::string& file) { return this->OpenFile(file, true); } |