Changes in libcfa/src/iostream.hfa [6c5d92f:fd4c009]
- File:
-
- 1 edited
-
libcfa/src/iostream.hfa (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/iostream.hfa
r6c5d92f rfd4c009 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:09:44202113 // Update Count : 38 512 // Last Modified On : Tue Apr 13 13:05:11 2021 13 // Update Count : 384 14 14 // 15 15 … … 24 24 trait ostream( ostype & ) { 25 25 // private 26 bool sepPrt$( ostype & ); // get separator state (on/off)27 void sepReset$( ostype & ); // set separator state to default state28 void sepReset$( ostype &, bool ); // set separator and default state29 const char * sepGetCur$( ostype & ); // get current separator string30 void sepSetCur$( ostype &, const char [] ); // set current separator string31 bool getNL$( ostype & ); // check newline32 void setNL$( ostype &, bool ); // saw newline33 bool getANL$( ostype & ); // get auto newline (on/off)34 bool getPrt$( ostype & ); // get fmt called in output cascade35 void setPrt$( ostype &, bool ); // set fmt called in output cascade26 bool $sepPrt( ostype & ); // get separator state (on/off) 27 void $sepReset( ostype & ); // set separator state to default state 28 void $sepReset( ostype &, bool ); // set separator and default state 29 const char * $sepGetCur( ostype & ); // get current separator string 30 void $sepSetCur( ostype &, const char [] ); // set current separator string 31 bool $getNL( ostype & ); // check newline 32 void $setNL( ostype &, bool ); // saw newline 33 bool $getANL( ostype & ); // get auto newline (on/off) 34 bool $getPrt( ostype & ); // get fmt called in output cascade 35 void $setPrt( ostype &, bool ); // set fmt called in output cascade 36 36 // public 37 37 void sepOn( ostype & ); // turn separator state on
Note:
See TracChangeset
for help on using the changeset viewer.