MCPcopy Create free account
hub / github.com/OpenFOAM/OpenFOAM-dev / read

Function read

src/meshTools/edgeMesh/edgeMeshIO.C:58–70  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

56// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
57
58bool Foam::edgeMesh::read(const fileName& name)
59{
60 word ext = name.ext();
61 if (ext == "gz")
62 {
63 fileName unzipName = name.lessExt();
64 return read(unzipName, unzipName.ext());
65 }
66 else
67 {
68 return read(name, ext);
69 }
70}
71
72
73// Read from file in given format

Callers 1

edgeMeshIO.CFile · 0.70

Calls 2

transferFunction · 0.70
NewFunction · 0.50

Tested by

no test coverage detected