Changes in libcfa/src/fstream.hfa [874b16e:31540f5]
- File:
-
- 1 edited
-
libcfa/src/fstream.hfa (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/fstream.hfa
r874b16e r31540f5 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Mon Jun 5 22:00:20 202313 // Update Count : 24 612 // Last Modified On : Sun Oct 10 09:37:32 2021 13 // Update Count : 243 14 14 // 15 15 … … 137 137 138 138 139 exception open_failure {139 exception Open_Failure { 140 140 union { 141 141 ofstream * ostream; … … 146 146 }; 147 147 148 void ?{}( open_failure & this, ofstream & );149 void ?{}( open_failure & this, ifstream & );148 void ?{}( Open_Failure & this, ofstream & ); 149 void ?{}( Open_Failure & this, ifstream & ); 150 150 151 exception close_failure {151 exception Close_Failure { 152 152 union { 153 153 ofstream * ostream; … … 158 158 }; 159 159 160 void ?{}( close_failure & this, ofstream & );161 void ?{}( close_failure & this, ifstream & );160 void ?{}( Close_Failure & this, ofstream & ); 161 void ?{}( Close_Failure & this, ifstream & ); 162 162 163 exception write_failure {163 exception Write_Failure { 164 164 union { 165 165 ofstream * ostream; … … 170 170 }; 171 171 172 void ?{}( write_failure & this, ofstream & );173 void ?{}( write_failure & this, ifstream & );172 void ?{}( Write_Failure & this, ofstream & ); 173 void ?{}( Write_Failure & this, ifstream & ); 174 174 175 exception read_failure {175 exception Read_Failure { 176 176 union { 177 177 ofstream * ostream; … … 182 182 }; 183 183 184 void ?{}( read_failure & this, ofstream & );185 void ?{}( read_failure & this, ifstream & );184 void ?{}( Read_Failure & this, ofstream & ); 185 void ?{}( Read_Failure & this, ifstream & ); 186 186 187 187 // Local Variables: //
Note:
See TracChangeset
for help on using the changeset viewer.