| 29 | // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // |
| 30 | |
| 31 | void Foam::surfMesh::setInstance(const fileName& inst) |
| 32 | { |
| 33 | if (debug) |
| 34 | { |
| 35 | InfoInFunction << "Resetting file instance to " << inst << endl; |
| 36 | } |
| 37 | |
| 38 | instance() = inst; |
| 39 | |
| 40 | storedIOPoints().writeOpt() = IOobject::AUTO_WRITE; |
| 41 | storedIOPoints().instance() = inst; |
| 42 | |
| 43 | storedIOFaces().writeOpt() = IOobject::AUTO_WRITE; |
| 44 | storedIOFaces().instance() = inst; |
| 45 | |
| 46 | storedIOZones().writeOpt() = IOobject::AUTO_WRITE; |
| 47 | storedIOZones().instance() = inst; |
| 48 | } |
| 49 | |
| 50 | |
| 51 | Foam::surfMesh::readUpdateState Foam::surfMesh::readUpdate() |