| 87 | |
| 88 | |
| 89 | bool Foam::edgeMesh::canRead |
| 90 | ( |
| 91 | const fileName& name, |
| 92 | const bool verbose |
| 93 | ) |
| 94 | { |
| 95 | word ext = name.ext(); |
| 96 | if (ext == "gz") |
| 97 | { |
| 98 | ext = name.lessExt().ext(); |
| 99 | } |
| 100 | return canReadType(ext, verbose); |
| 101 | } |
| 102 | |
| 103 | |
| 104 | // * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * // |