| 55 | // * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * * // |
| 56 | |
| 57 | void Foam::meshReaders::STARCD::readToNewline(IFstream& is) |
| 58 | { |
| 59 | char ch = '\n'; |
| 60 | do |
| 61 | { |
| 62 | (is).get(ch); |
| 63 | } |
| 64 | while ((is) && ch != '\n'); |
| 65 | } |
| 66 | |
| 67 | |
| 68 | bool Foam::meshReaders::STARCD::readHeader(IFstream& is, word fileSignature) |
no test coverage detected