Changeset 2d7cb19 for libcfa/src/iostream.hfa
- Timestamp:
- Oct 19, 2023, 3:26:36 PM (2 years ago)
- Branches:
- master
- Children:
- 0803ead, 1b0184b
- Parents:
- cbbfba9 (diff), e0dc038 (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
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/iostream.hfa
rcbbfba9 r2d7cb19 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Sun Oct 8 12:02:55202313 // Update Count : 5 6812 // Last Modified On : Mon Oct 16 21:12:01 2023 13 // Update Count : 573 14 14 // 15 15 … … 324 324 istype & ungetc( istype &, char ); 325 325 bool eof( istype & ); 326 void clear( istype & ); 326 327 }; // basic_istream 327 328 … … 329 330 trait istream { 330 331 bool fail( istype & ); 331 void clear( istype &);332 void open( istype & is, const char name[], const char mode[] ); 332 333 void open( istype & is, const char name[] ); 333 334 void close( istype & is ); … … 402 403 403 404 ExceptionDecl( cstring_length ); 405 ExceptionDecl( missing_data ); 404 406 405 407 // *********************************** manipulators *********************************** 406 408 409 // skip does not compose with other C string manipulators. 407 410 struct _Istream_Cskip { 408 411 const char * scanset;
Note:
See TracChangeset
for help on using the changeset viewer.