Changeset 342 for bdm/stat/libDS.h

Show
Ignore:
Timestamp:
05/14/09 17:16:45 (15 years ago)
Author:
smidl
Message:

Barcelona

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • bdm/stat/libDS.h

    r313 r342  
    6868        //! returns number of data in the file; 
    6969        int ndat(){return Data.cols();} 
     70        //! no sense to log this type 
     71        void log_add ( logger &L ) {}; 
     72        //! no sense to log this type 
     73        void logit ( logger &L ) {}; 
    7074}; 
    7175 
     
    7680 
    7781*/ 
    78 class ItppFileDS: public FileDS { 
    79  
    80 public: 
    81         ItppFileDS ( const string &fname, const string &varname ) :FileDS() { 
     82class ITppFileDS: public FileDS { 
     83 
     84public: 
     85        ITppFileDS ( const string &fname, const string &varname ) :FileDS() { 
    8286                it_file it ( fname ); 
    8387                it << Name ( varname );  
     
    8589                time = 0; 
    8690                //rowid and delays are ignored 
    87         } 
     91        }; 
    8892}; 
    8993