Ignore:
Timestamp:
07/02/13 13:11:02 (11 years ago)
Author:
Malte Marquarding
Message:

Issue #293: added scantbale.drop_history and added extra parameters to scantable.history to allow selection of rows

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/ScantableWrapper.h

    r2818 r2820  
    242242  }
    243243
    244   std::vector<std::string> getHistory() const
    245     { return table_->getHistory(); }
     244  std::vector<std::string> getHistory(int nrow=-1, int start=0) const
     245    { return table_->getHistory(nrow, start); }
     246
     247  uint historyLength() {
     248    return table_->historyLength();
     249  }
     250
     251  void dropHistory() { table_->dropHistory(); }
    246252
    247253  void addHistory(const std::string& hist)
Note: See TracChangeset for help on using the changeset viewer.