| 83 | // * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * // |
| 84 | |
| 85 | void Foam::vtkUnstructuredReader::warnUnhandledType |
| 86 | ( |
| 87 | Istream& inFile, |
| 88 | const label type, |
| 89 | labelHashSet& warningGiven |
| 90 | ) const |
| 91 | { |
| 92 | if (warningGiven.insert(type)) |
| 93 | { |
| 94 | IOWarningInFunction(inFile) |
| 95 | << "Skipping unknown cell type " << type << endl; |
| 96 | } |
| 97 | } |
| 98 | |
| 99 | |
| 100 | void Foam::vtkUnstructuredReader::extractCells |