Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/fstream.hfa

    r874b16e r31540f5  
    1010// Created On       : Wed May 27 17:56:53 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Mon Jun  5 22:00:20 2023
    13 // Update Count     : 246
     12// Last Modified On : Sun Oct 10 09:37:32 2021
     13// Update Count     : 243
    1414//
    1515
     
    137137
    138138
    139 exception open_failure {
     139exception Open_Failure {
    140140        union {
    141141                ofstream * ostream;
     
    146146};
    147147
    148 void ?{}( open_failure & this, ofstream & );
    149 void ?{}( open_failure & this, ifstream & );
     148void ?{}( Open_Failure & this, ofstream & );
     149void ?{}( Open_Failure & this, ifstream & );
    150150
    151 exception close_failure {
     151exception Close_Failure {
    152152        union {
    153153                ofstream * ostream;
     
    158158};
    159159
    160 void ?{}( close_failure & this, ofstream & );
    161 void ?{}( close_failure & this, ifstream & );
     160void ?{}( Close_Failure & this, ofstream & );
     161void ?{}( Close_Failure & this, ifstream & );
    162162
    163 exception write_failure {
     163exception Write_Failure {
    164164        union {
    165165                ofstream * ostream;
     
    170170};
    171171
    172 void ?{}( write_failure & this, ofstream & );
    173 void ?{}( write_failure & this, ifstream & );
     172void ?{}( Write_Failure & this, ofstream & );
     173void ?{}( Write_Failure & this, ifstream & );
    174174
    175 exception read_failure {
     175exception Read_Failure {
    176176        union {
    177177                ofstream * ostream;
     
    182182};
    183183
    184 void ?{}( read_failure & this, ofstream & );
    185 void ?{}( read_failure & this, ifstream & );
     184void ?{}( Read_Failure & this, ofstream & );
     185void ?{}( Read_Failure & this, ifstream & );
    186186
    187187// Local Variables: //
Note: See TracChangeset for help on using the changeset viewer.