Changes in libcfa/src/fstream.cfa [ecfd758:e474cf09]
- File:
-
- 1 edited
-
libcfa/src/fstream.cfa (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/fstream.cfa
recfd758 re474cf09 321 321 322 322 323 EHM_VIRTUAL_TABLE(Open_Failure, Open_Failure_main_table);324 323 void ?{}( Open_Failure & this, ofstream & ostream ) { 325 this.virtual_table = &Open_Failure_main_table;324 VTABLE_INIT(this, Open_Failure); 326 325 this.ostream = &ostream; 327 326 this.tag = 1; 328 327 } 329 328 void ?{}( Open_Failure & this, ifstream & istream ) { 330 this.virtual_table = &Open_Failure_main_table;329 VTABLE_INIT(this, Open_Failure); 331 330 this.istream = &istream; 332 331 this.tag = 0; 333 332 } 333 const char * Open_Failure_msg(Open_Failure * this) { 334 return "Open_Failure"; 335 } 336 VTABLE_INSTANCE(Open_Failure)(Open_Failure_msg); 334 337 void throwOpen_Failure( ofstream & ostream ) { 335 338 Open_Failure exc = { ostream };
Note:
See TracChangeset
for help on using the changeset viewer.