Changes in src/libcfa/iostream [9ebd778:829c907]
- File:
-
- 1 edited
-
src/libcfa/iostream (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/iostream
r9ebd778 r829c907 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Mon May 15 18:08:44201713 // Update Count : 10 512 // Last Modified On : Tue Mar 21 15:57:29 2017 13 // Update Count : 104 14 14 // 15 15 … … 20 20 21 21 trait ostream( dtype ostype ) { 22 // private23 22 _Bool sepPrt( ostype * ); // return separator state (on/off) 23 void sepOn( ostype * ); // turn separator state on 24 void sepOff( ostype * ); // turn separator state off 24 25 void sepReset( ostype * ); // set separator state to default state 25 26 void sepReset( ostype *, _Bool ); // set separator and default state 26 27 const char * sepGetCur( ostype * ); // get current separator string 27 28 void sepSetCur( ostype *, const char * ); // set current separator string 28 // public29 void sepOn( ostype * ); // turn separator state on30 void sepOff( ostype * ); // turn separator state off31 _Bool sepDisable( ostype * ); // set default state to off, and return previous state32 _Bool sepEnable( ostype * ); // set default state to on, and return previous state33 34 29 const char * sepGet( ostype * ); // get separator string 35 30 void sepSet( ostype *, const char * ); // set separator to string (15 character maximum) 36 31 const char * sepGetTuple( ostype * ); // get tuple separator string 37 32 void sepSetTuple( ostype *, const char * ); // set tuple separator to string (15 character maximum) 33 _Bool sepDisable( ostype * ); // set default state to off, and return previous state 34 _Bool sepEnable( ostype * ); // set default state to on, and return previous state 38 35 39 36 int fail( ostype * );
Note:
See TracChangeset
for help on using the changeset viewer.