Changeset 91e52be for libcfa/src/fstream.hfa
- Timestamp:
- Jun 18, 2020, 7:03:55 PM (3 years ago)
- Branches:
- arm-eh, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 6026628
- Parents:
- 030653a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/fstream.hfa
r030653a r91e52be 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Mon Feb 17 08:29:23202013 // Update Count : 1 7512 // Last Modified On : Tue Jun 16 20:41:21 2020 13 // Update Count : 184 14 14 // 15 15 … … 17 17 18 18 #include "iostream.hfa" 19 #include <exception.hfa> 19 20 20 21 … … 106 107 extern ifstream & sin, & stdin; // aliases 107 108 109 110 //*********************************** exceptions *********************************** 111 112 113 DATA_EXCEPTION(IO_OPEN_FAILURE)( 114 union { 115 ofstream * ostream; 116 ifstream * istream; 117 }; 118 ); 119 120 void ?{}( IO_OPEN_FAILURE & this, ofstream & ostream ); 121 void ?{}( IO_OPEN_FAILURE & this, ifstream & istream ); 122 108 123 // Local Variables: // 109 124 // mode: c //
Note: See TracChangeset
for help on using the changeset viewer.