Changeset a4da45e for libcfa/src/fstream.hfa
- Timestamp:
- Feb 26, 2024, 3:53:42 AM (20 months ago)
- Branches:
- master
- Children:
- 3f9a8d0
- Parents:
- 0522ebe (diff), 022bce0 (diff)
 Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
 Use the(diff)links above to see all the changes relative to each parent.
- File:
- 
      - 1 edited
 
 - 
          
  libcfa/src/fstream.hfa (modified) (6 diffs)
 
Legend:
- Unmodified
- Added
- Removed
- 
      libcfa/src/fstream.hfar0522ebe ra4da45e 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Wed Oct 18 20:30:12 202313 // Update Count : 2 6112 // Last Modified On : Sun Feb 11 20:35:00 2024 13 // Update Count : 274 14 14 // 15 15 … … 139 139 140 140 141 exception open_failure { 141 ExceptionDecl( open_failure, 142 142 union { 143 143 ofstream * ostream; … … 146 146 // TEMPORARY: need polymorphic exceptions 147 147 int tag; // 1 => ostream; 0 => istream 148 };148 ); 149 149 150 150 void ?{}( open_failure & this, ofstream & ); 151 151 void ?{}( open_failure & this, ifstream & ); 152 152 153 exception close_failure { 153 ExceptionDecl( close_failure, 154 154 union { 155 155 ofstream * ostream; … … 158 158 // TEMPORARY: need polymorphic exceptions 159 159 int tag; // 1 => ostream; 0 => istream 160 };160 ); 161 161 162 162 void ?{}( close_failure & this, ofstream & ); 163 163 void ?{}( close_failure & this, ifstream & ); 164 164 165 exception write_failure { 165 ExceptionDecl( write_failure, 166 166 union { 167 167 ofstream * ostream; … … 170 170 // TEMPORARY: need polymorphic exceptions 171 171 int tag; // 1 => ostream; 0 => istream 172 };172 ); 173 173 174 174 void ?{}( write_failure & this, ofstream & ); 175 175 void ?{}( write_failure & this, ifstream & ); 176 176 177 exception read_failure { 177 ExceptionDecl( read_failure, 178 178 union { 179 179 ofstream * ostream; … … 182 182 // TEMPORARY: need polymorphic exceptions 183 183 int tag; // 1 => ostream; 0 => istream 184 };184 ); 185 185 186 186 void ?{}( read_failure & this, ofstream & ); 
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  