Changes in libcfa/src/fstream.hfa [9d362a0:200fcb3]
- File:
-
- 1 edited
-
libcfa/src/fstream.hfa (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/fstream.hfa
r9d362a0 r200fcb3 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Mon Dec 24 18:33:41 201813 // Update Count : 14 912 // Last Modified On : Wed Dec 12 07:52:41 2018 13 // Update Count : 143 14 14 // 15 15 … … 24 24 bool sepOnOff; 25 25 bool nlOnOff; 26 bool prt; // print text26 bool nonlManip; 27 27 bool sawNL; 28 28 const char * sepCur; … … 40 40 void setNL( ofstream &, bool ); 41 41 bool getANL( ofstream & ); 42 bool get Prt( ofstream & );43 void set Prt( ofstream &, bool );42 bool getNonl( ofstream & ); 43 void setNonl( ofstream &, bool ); 44 44 45 45 // public … … 62 62 void close( ofstream & ); 63 63 ofstream & write( ofstream &, const char * data, size_t size ); 64 int fmt( ofstream &, const char f ormat[], ... );64 int fmt( ofstream &, const char fmt[], ... ); 65 65 66 66 void ?{}( ofstream & os ); … … 83 83 ifstream & read( ifstream & is, char * data, size_t size ); 84 84 ifstream & ungetc( ifstream & is, char c ); 85 int fmt( ifstream &, const char f ormat[], ... );85 int fmt( ifstream &, const char fmt[], ... ); 86 86 87 87 void ?{}( ifstream & is );
Note:
See TracChangeset
for help on using the changeset viewer.