Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/iostream.hfa

    r65240bb rdc5072f  
    1010// Created On       : Wed May 27 17:56:53 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Fri Jul 12 12:08:38 2019
    13 // Update Count     : 334
     12// Last Modified On : Thu Jun 13 17:20:21 2019
     13// Update Count     : 325
    1414//
    1515
     
    1919
    2020
    21 //*********************************** ostream ***********************************
     21//*********************************** Ostream ***********************************
    2222
    2323
     
    4747        void sepSetTuple( ostype &, const char * );                     // set tuple separator to string (15 character maximum)
    4848
    49         void ends( ostype & os );                                                       // end of output statement
    5049        int fail( ostype & );
    5150        int flush( ostype & );
     
    9998        void ?|?( ostype &, unsigned long long int );
    10099
    101         ostype & ?|?( ostype &, float );
    102         void ?|?( ostype &, float );
     100        ostype & ?|?( ostype &, float ); // FIX ME: should not be required
     101        void ?|?( ostype &, float ); // FIX ME: should not be required
    103102        ostype & ?|?( ostype &, double );
    104103        void ?|?( ostype &, double );
     
    127126        void ?|?( ostype &, ostype & (*)( ostype & ) );
    128127        ostype & nl( ostype & );
     128        void nl( ostype & );
    129129        ostype & nonl( ostype & );
    130130        ostype & sep( ostype & );
     
    150150} // distribution
    151151
    152 //*********************************** manipulators ***********************************
     152//*********************************** Manipulators ***********************************
    153153
    154154forall( otype T )
     
    169169}; // _Ostream_Manip
    170170
    171 //*********************************** integral ***********************************
     171//*********************************** Integral ***********************************
    172172
    173173// See 6.7.9. 19) The initialization shall occur in initializer list order, each initializer provided for a particular
     
    207207IntegralFMTDecl( unsigned long long int, 'u' )
    208208
    209 //*********************************** floating point ***********************************
     209//*********************************** Floating Point ***********************************
    210210
    211211// Default suffix for values with no fraction is "."
     
    236236FloatingPointFMTDecl( long double )
    237237
    238 //*********************************** character ***********************************
     238//*********************************** Character ***********************************
    239239
    240240static inline {
     
    253253} // ?|?
    254254
    255 //*********************************** C string ***********************************
     255//*********************************** C String ***********************************
    256256
    257257static inline {
     
    272272
    273273
    274 //*********************************** istream ***********************************
     274//*********************************** Istream ***********************************
    275275
    276276
     
    326326} // distribution
    327327
    328 //*********************************** manipulators ***********************************
     328//*********************************** Manipulators ***********************************
    329329
    330330struct _Istream_Cstr {
     
    403403
    404404
    405 //*********************************** time ***********************************
     405//*********************************** Time ***********************************
    406406
    407407
Note: See TracChangeset for help on using the changeset viewer.