Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/fstream.hfa

    r874b16e rd0cfcbe1  
    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 : Fri Aug 18 10:41:15 2023
     13// Update Count     : 258
    1414//
    1515
     
    3434        char separator$[ofstream_sepSize];
    3535        char tupleSeparator$[ofstream_sepSize];
    36         multiple_acquisition_lock lock$;
     36        multiple_acquisition_lock lock$;                                        // used by trait is_lock for mutex statement
    3737}; // ofstream
    3838
     
    4040
    4141// private
     42bool getNL$( ofstream & );
     43bool setNL$( ofstream &, bool );
     44bool getANL$( ofstream & );
     45bool setANL$( ofstream &, bool );
     46
    4247bool sepPrt$( ofstream & );
    4348void sepReset$( ofstream & );
     
    4550const char * sepGetCur$( ofstream & );
    4651void sepSetCur$( ofstream &, const char [] );
    47 bool getNL$( ofstream & );
    48 void setNL$( ofstream &, bool );
    49 bool getANL$( ofstream & );
     52
    5053bool getPrt$( ofstream & );
    51 void setPrt$( ofstream &, bool );
     54bool setPrt$( ofstream &, bool );
    5255
    5356void lock( ofstream & );
     
    5558
    5659// public
    57 void sepOn( ofstream & );
    58 void sepOff( ofstream & );
    59 bool sepDisable( ofstream & );
    60 bool sepEnable( ofstream & );
    6160void nlOn( ofstream & );
    6261void nlOff( ofstream & );
    6362
     63void sep( ofstream & );
     64void nosep( ofstream & );
     65bool sepOn( ofstream & );
     66bool sepOff( ofstream & );
    6467const char * sepGet( ofstream & );
    6568void sepSet( ofstream &, const char [] );
     
    99102        void * file$;
    100103        bool nlOnOff$;
    101         multiple_acquisition_lock lock$;
     104        multiple_acquisition_lock lock$;                                        // used by trait is_lock for mutex statement
    102105}; // ifstream
    103106
     
    106109// private
    107110bool getANL$( ifstream & );
     111bool setANL$( ifstream &, bool );
    108112
    109113void lock( ifstream & );
Note: See TracChangeset for help on using the changeset viewer.