Changes in libcfa/src/fstream.hfa [6c5d92f:ecfd758]
- File:
-
- 1 edited
-
libcfa/src/fstream.hfa (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/fstream.hfa
r6c5d92f recfd758 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Tue Apr 20 19:04:12202113 // Update Count : 21 812 // Last Modified On : Mon Mar 1 22:45:08 2021 13 // Update Count : 217 14 14 // 15 15 … … 26 26 enum { sepSize = 16 }; 27 27 struct ofstream { 28 void * file$;29 bool sepDefault$;30 bool sepOnOff$;31 bool nlOnOff$;32 bool prt$; // print text33 bool sawNL$;34 const char * sepCur$;35 char separator$[sepSize];36 char tupleSeparator$[sepSize];37 multiple_acquisition_lock lock$;38 bool acquired$;28 void * $file; 29 bool $sepDefault; 30 bool $sepOnOff; 31 bool $nlOnOff; 32 bool $prt; // print text 33 bool $sawNL; 34 const char * $sepCur; 35 char $separator[sepSize]; 36 char $tupleSeparator[sepSize]; 37 multiple_acquisition_lock $lock; 38 bool $acquired; 39 39 }; // ofstream 40 40 41 41 // private 42 bool sepPrt$( ofstream & );43 void sepReset$( ofstream & );44 void sepReset$( ofstream &, bool );45 const char * sepGetCur$( ofstream & );46 void sepSetCur$( ofstream &, const char [] );47 bool getNL$( ofstream & );48 void setNL$( ofstream &, bool );49 bool getANL$( ofstream & );50 bool getPrt$( ofstream & );51 void setPrt$( ofstream &, bool );42 bool $sepPrt( ofstream & ); 43 void $sepReset( ofstream & ); 44 void $sepReset( ofstream &, bool ); 45 const char * $sepGetCur( ofstream & ); 46 void $sepSetCur( ofstream &, const char [] ); 47 bool $getNL( ofstream & ); 48 void $setNL( ofstream &, bool ); 49 bool $getANL( ofstream & ); 50 bool $getPrt( ofstream & ); 51 void $setPrt( ofstream &, bool ); 52 52 53 53 // public … … 94 94 95 95 struct ifstream { 96 void * file$;97 bool nlOnOff$;98 multiple_acquisition_lock lock$;99 bool acquired$;96 void * $file; 97 bool $nlOnOff; 98 multiple_acquisition_lock $lock; 99 bool $acquired; 100 100 }; // ifstream 101 101
Note:
See TracChangeset
for help on using the changeset viewer.