Ignore:
Timestamp:
04/26/07 14:45:56 (17 years ago)
Author:
mar637
Message:

added scantable.get_inttime as per ticket #106

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/ScantableWrapper.h

    r1189 r1350  
    4444  }
    4545
    46   ScantableWrapper(int type=0)
     46  explicit ScantableWrapper(int type=0)
    4747  {
    4848    casa::Table::TableType tp = casa::Table::Memory;
     
    5151  }
    5252
    53   ScantableWrapper(casa::CountedPtr<Scantable> cp) : table_(cp) {;}
     53  explicit ScantableWrapper(casa::CountedPtr<Scantable> cp) : table_(cp) {;}
    5454
    5555  ScantableWrapper(const ScantableWrapper& mt) :
     
    8484  std::string getTime(int whichrow=0) const
    8585    { return table_->getTime(whichrow); }
     86
     87  double getIntTime(int whichrow=0) const
     88    { return table_->getIntTime(whichrow); }
    8689
    8790  std::string getDirectionString(int whichrow=0) const
Note: See TracChangeset for help on using the changeset viewer.