------------------------------------------------------------------------------
| 770 | |
| 771 | //------------------------------------------------------------------------------ |
| 772 | void vtkMFIXReader::GetDouble(istream& in, double& val) |
| 773 | { |
| 774 | in.read((char*)&val, sizeof(double)); |
| 775 | this->SwapDouble(val); |
| 776 | } |
| 777 | |
| 778 | //------------------------------------------------------------------------------ |
| 779 | void vtkMFIXReader::SkipBytes(istream& in, int n) |
no test coverage detected