Changes in libcfa/src/fstream.cfa [a5a6a1a8:00e9be9]
- File:
-
- 1 edited
-
libcfa/src/fstream.cfa (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/fstream.cfa
ra5a6a1a8 r00e9be9 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Thu Jul 22 11:34:41202113 // Update Count : 44 812 // Last Modified On : Wed Apr 28 20:37:53 2021 13 // Update Count : 445 14 14 // 15 15 … … 338 338 339 339 340 //EHM_VIRTUAL_TABLE(Open_Failure, Open_Failure_main_table); 341 static vtable(Open_Failure) Open_Failure_main_table; 342 343 // exception I/O constructors 340 EHM_VIRTUAL_TABLE(Open_Failure, Open_Failure_main_table); 344 341 void ?{}( Open_Failure & this, ofstream & ostream ) { 345 342 this.virtual_table = &Open_Failure_main_table; 346 343 this.ostream = &ostream; 347 344 this.tag = 1; 348 } // ?{} 349 345 } 350 346 void ?{}( Open_Failure & this, ifstream & istream ) { 351 347 this.virtual_table = &Open_Failure_main_table; 352 348 this.istream = &istream; 353 349 this.tag = 0; 354 } // ?{} 355 350 } 356 351 void throwOpen_Failure( ofstream & ostream ) { 357 352 Open_Failure exc = { ostream }; 358 353 } 359 360 354 void throwOpen_Failure( ifstream & istream ) { 361 355 Open_Failure exc = { istream };
Note:
See TracChangeset
for help on using the changeset viewer.