| 29 | // * * * * * * * * * * * * * * * Members Functions * * * * * * * * * * * * * // |
| 30 | |
| 31 | bool Foam::IOdictionary::readData(Istream& is) |
| 32 | { |
| 33 | is >> *this; |
| 34 | |
| 35 | if (writeDictionaries && Pstream::master() && !is.bad()) |
| 36 | { |
| 37 | Sout<< nl |
| 38 | << "--- IOdictionary " << name() |
| 39 | << ' ' << objectPath() << ":" << nl; |
| 40 | writeHeader(Sout); |
| 41 | writeData(Sout); |
| 42 | Sout<< "--- End of IOdictionary " << name() << nl << endl; |
| 43 | } |
| 44 | |
| 45 | return !is.bad(); |
| 46 | } |
| 47 | |
| 48 | |
| 49 | bool Foam::IOdictionary::writeData(Ostream& os) const |
no test coverage detected