Changes in libcfa/src/fstream.hfa [d0cfcbe1:874b16e]
- File:
-
- 1 edited
-
libcfa/src/fstream.hfa (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/fstream.hfa
rd0cfcbe1 r874b16e 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Fri Aug 18 10:41:15202313 // Update Count : 2 5812 // Last Modified On : Mon Jun 5 22:00:20 2023 13 // Update Count : 246 14 14 // 15 15 … … 34 34 char separator$[ofstream_sepSize]; 35 35 char tupleSeparator$[ofstream_sepSize]; 36 multiple_acquisition_lock lock$; // used by trait is_lock for mutex statement36 multiple_acquisition_lock lock$; 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 47 42 bool sepPrt$( ofstream & ); 48 43 void sepReset$( ofstream & ); … … 50 45 const char * sepGetCur$( ofstream & ); 51 46 void sepSetCur$( ofstream &, const char [] ); 52 47 bool getNL$( ofstream & ); 48 void setNL$( ofstream &, bool ); 49 bool getANL$( ofstream & ); 53 50 bool getPrt$( ofstream & ); 54 boolsetPrt$( ofstream &, bool );51 void setPrt$( ofstream &, bool ); 55 52 56 53 void lock( ofstream & ); … … 58 55 59 56 // public 57 void sepOn( ofstream & ); 58 void sepOff( ofstream & ); 59 bool sepDisable( ofstream & ); 60 bool sepEnable( ofstream & ); 60 61 void nlOn( ofstream & ); 61 62 void nlOff( ofstream & ); 62 63 63 void sep( ofstream & );64 void nosep( ofstream & );65 bool sepOn( ofstream & );66 bool sepOff( ofstream & );67 64 const char * sepGet( ofstream & ); 68 65 void sepSet( ofstream &, const char [] ); … … 102 99 void * file$; 103 100 bool nlOnOff$; 104 multiple_acquisition_lock lock$; // used by trait is_lock for mutex statement101 multiple_acquisition_lock lock$; 105 102 }; // ifstream 106 103 … … 109 106 // private 110 107 bool getANL$( ifstream & ); 111 bool setANL$( ifstream &, bool );112 108 113 109 void lock( ifstream & );
Note:
See TracChangeset
for help on using the changeset viewer.