------------------------------------------------------------------------------
| 607 | |
| 608 | //------------------------------------------------------------------------------ |
| 609 | void EnSightFile::GoBackOneLine() |
| 610 | { |
| 611 | auto pos = this->Stream->tellg(); |
| 612 | pos -= this->Stream->gcount(); |
| 613 | pos -= (this->FortranSkipBytes * 2); |
| 614 | this->Stream->seekg(pos, ios::beg); |
| 615 | } |
| 616 | |
| 617 | //------------------------------------------------------------------------------ |
| 618 | bool EnSightFile::DetectByteOrder(int* result) |
no outgoing calls
no test coverage detected