| 44 | \*---------------------------------------------------------------------------*/ |
| 45 | |
| 46 | class ensightGeoFile |
| 47 | : |
| 48 | public ensightFile |
| 49 | { |
| 50 | // Private Member Functions |
| 51 | |
| 52 | //- Disallow default bitwise assignment |
| 53 | void operator=(const ensightGeoFile&); |
| 54 | |
| 55 | //- Disallow default copy constructor |
| 56 | ensightGeoFile(const ensightGeoFile&); |
| 57 | |
| 58 | |
| 59 | public: |
| 60 | |
| 61 | // Constructors |
| 62 | |
| 63 | //- Construct from pathname |
| 64 | ensightGeoFile |
| 65 | ( |
| 66 | const fileName& pathname, |
| 67 | IOstream::streamFormat format=IOstream::BINARY |
| 68 | ); |
| 69 | |
| 70 | |
| 71 | //- Destructor |
| 72 | ~ensightGeoFile(); |
| 73 | |
| 74 | |
| 75 | // Output |
| 76 | |
| 77 | //- Write keyword with trailing newline |
| 78 | virtual Ostream& writeKeyword(const string& key); |
| 79 | }; |
| 80 | |
| 81 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // |
| 82 | |