Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/fstream.hfa

    rd0cfcbe1 r874b16e  
    1010// Created On       : Wed May 27 17:56:53 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Fri Aug 18 10:41:15 2023
    13 // Update Count     : 258
     12// Last Modified On : Mon Jun  5 22:00:20 2023
     13// Update Count     : 246
    1414//
    1515
     
    3434        char separator$[ofstream_sepSize];
    3535        char tupleSeparator$[ofstream_sepSize];
    36         multiple_acquisition_lock lock$;                                        // used by trait is_lock for mutex statement
     36        multiple_acquisition_lock lock$;
    3737}; // ofstream
    3838
     
    4040
    4141// private
    42 bool getNL$( ofstream & );
    43 bool setNL$( ofstream &, bool );
    44 bool getANL$( ofstream & );
    45 bool setANL$( ofstream &, bool );
    46 
    4742bool sepPrt$( ofstream & );
    4843void sepReset$( ofstream & );
     
    5045const char * sepGetCur$( ofstream & );
    5146void sepSetCur$( ofstream &, const char [] );
    52 
     47bool getNL$( ofstream & );
     48void setNL$( ofstream &, bool );
     49bool getANL$( ofstream & );
    5350bool getPrt$( ofstream & );
    54 bool setPrt$( ofstream &, bool );
     51void setPrt$( ofstream &, bool );
    5552
    5653void lock( ofstream & );
     
    5855
    5956// public
     57void sepOn( ofstream & );
     58void sepOff( ofstream & );
     59bool sepDisable( ofstream & );
     60bool sepEnable( ofstream & );
    6061void nlOn( ofstream & );
    6162void nlOff( ofstream & );
    6263
    63 void sep( ofstream & );
    64 void nosep( ofstream & );
    65 bool sepOn( ofstream & );
    66 bool sepOff( ofstream & );
    6764const char * sepGet( ofstream & );
    6865void sepSet( ofstream &, const char [] );
     
    10299        void * file$;
    103100        bool nlOnOff$;
    104         multiple_acquisition_lock lock$;                                        // used by trait is_lock for mutex statement
     101        multiple_acquisition_lock lock$;
    105102}; // ifstream
    106103
     
    109106// private
    110107bool getANL$( ifstream & );
    111 bool setANL$( ifstream &, bool );
    112108
    113109void lock( ifstream & );
Note: See TracChangeset for help on using the changeset viewer.