------------------------------------------------------------------------------
| 618 | |
| 619 | //------------------------------------------------------------------------------ |
| 620 | bool EnSightDataSet::ParseFormatSection() |
| 621 | { |
| 622 | auto result = this->CaseFile.ReadNextLine(MAX_CASE_LINE_LENGTH); |
| 623 | auto& line = result.second; |
| 624 | if (line.find("ensight gold") != std::string::npos) |
| 625 | { |
| 626 | return true; |
| 627 | } |
| 628 | return false; |
| 629 | } |
| 630 | |
| 631 | //------------------------------------------------------------------------------ |
| 632 | void EnSightDataSet::ParseGeometrySection() |
no test coverage detected