Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/fstream.hfa

    r6c5d92f recfd758  
    1010// Created On       : Wed May 27 17:56:53 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Tue Apr 20 19:04:12 2021
    13 // Update Count     : 218
     12// Last Modified On : Mon Mar  1 22:45:08 2021
     13// Update Count     : 217
    1414//
    1515
     
    2626enum { sepSize = 16 };
    2727struct ofstream {
    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$;
     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;
    3939}; // ofstream
    4040
    4141// 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 );
     42bool $sepPrt( ofstream & );
     43void $sepReset( ofstream & );
     44void $sepReset( ofstream &, bool );
     45const char * $sepGetCur( ofstream & );
     46void $sepSetCur( ofstream &, const char [] );
     47bool $getNL( ofstream & );
     48void $setNL( ofstream &, bool );
     49bool $getANL( ofstream & );
     50bool $getPrt( ofstream & );
     51void $setPrt( ofstream &, bool );
    5252
    5353// public
     
    9494
    9595struct 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;
    100100}; // ifstream
    101101
Note: See TracChangeset for help on using the changeset viewer.