Changeset 2a301ff for libcfa/src/fstream.hfa
- Timestamp:
- Aug 31, 2023, 11:31:15 PM (2 years ago)
- Branches:
- master
- Children:
- 950c58e
- Parents:
- 92355883 (diff), 686912c (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
-
libcfa/src/fstream.hfa (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/fstream.hfa
r92355883 r2a301ff 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Mon Jun 5 22:00:20202313 // Update Count : 2 4612 // Last Modified On : Fri Aug 18 10:41:15 2023 13 // Update Count : 258 14 14 // 15 15 … … 34 34 char separator$[ofstream_sepSize]; 35 35 char tupleSeparator$[ofstream_sepSize]; 36 multiple_acquisition_lock lock$; 36 multiple_acquisition_lock lock$; // used by trait is_lock for mutex statement 37 37 }; // ofstream 38 38 … … 40 40 41 41 // private 42 bool getNL$( ofstream & ); 43 bool setNL$( ofstream &, bool ); 44 bool getANL$( ofstream & ); 45 bool setANL$( ofstream &, bool ); 46 42 47 bool sepPrt$( ofstream & ); 43 48 void sepReset$( ofstream & ); … … 45 50 const char * sepGetCur$( ofstream & ); 46 51 void sepSetCur$( ofstream &, const char [] ); 47 bool getNL$( ofstream & ); 48 void setNL$( ofstream &, bool ); 49 bool getANL$( ofstream & ); 52 50 53 bool getPrt$( ofstream & ); 51 voidsetPrt$( ofstream &, bool );54 bool setPrt$( ofstream &, bool ); 52 55 53 56 void lock( ofstream & ); … … 55 58 56 59 // public 57 void sepOn( ofstream & );58 void sepOff( ofstream & );59 bool sepDisable( ofstream & );60 bool sepEnable( ofstream & );61 60 void nlOn( ofstream & ); 62 61 void nlOff( ofstream & ); 63 62 63 void sep( ofstream & ); 64 void nosep( ofstream & ); 65 bool sepOn( ofstream & ); 66 bool sepOff( ofstream & ); 64 67 const char * sepGet( ofstream & ); 65 68 void sepSet( ofstream &, const char [] ); … … 99 102 void * file$; 100 103 bool nlOnOff$; 101 multiple_acquisition_lock lock$; 104 multiple_acquisition_lock lock$; // used by trait is_lock for mutex statement 102 105 }; // ifstream 103 106 … … 106 109 // private 107 110 bool getANL$( ifstream & ); 111 bool setANL$( ifstream &, bool ); 108 112 109 113 void lock( ifstream & );
Note:
See TracChangeset
for help on using the changeset viewer.