| 87 | \*---------------------------------------------------------------------------*/ |
| 88 | |
| 89 | class cloudInfo |
| 90 | : |
| 91 | public regionFunctionObject, |
| 92 | public logFiles |
| 93 | { |
| 94 | protected: |
| 95 | |
| 96 | // Protected Member Functions |
| 97 | |
| 98 | //- File header information |
| 99 | virtual void writeFileHeader(const label i); |
| 100 | |
| 101 | |
| 102 | private: |
| 103 | |
| 104 | // Private member functions |
| 105 | |
| 106 | //- Disallow default bitwise copy construct |
| 107 | cloudInfo(const cloudInfo&); |
| 108 | |
| 109 | //- Disallow default bitwise assignment |
| 110 | void operator=(const cloudInfo&); |
| 111 | |
| 112 | |
| 113 | public: |
| 114 | |
| 115 | //- Runtime type information |
| 116 | TypeName("cloudInfo"); |
| 117 | |
| 118 | |
| 119 | // Constructors |
| 120 | |
| 121 | //- Construct from Time and dictionary |
| 122 | cloudInfo |
| 123 | ( |
| 124 | const word& name, |
| 125 | const Time& runTime, |
| 126 | const dictionary& |
| 127 | ); |
| 128 | |
| 129 | |
| 130 | //- Destructor |
| 131 | virtual ~cloudInfo(); |
| 132 | |
| 133 | |
| 134 | // Member Functions |
| 135 | |
| 136 | //- Read the controls |
| 137 | virtual bool read(const dictionary&); |
| 138 | |
| 139 | //- Execute, currently does nothing |
| 140 | virtual bool execute(); |
| 141 | |
| 142 | //- Write |
| 143 | virtual bool write(); |
| 144 | }; |
| 145 | |
| 146 | |