Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/FillerWrapper.h

    r1904 r1819  
    1616#include <casa/Exceptions.h>
    1717#include <casa/Utilities/CountedPtr.h>
    18 #include <casa/Containers/Record.h>
    1918#include <casa/OS/File.h>
    2019
     
    3938
    4039
    41   void open(const std::string& filename, const casa::Record& rec) {
    42     //  void open(const std::string& filename) {
     40//  void open(const std::string& filename, casa::Record rec) {
     41  void open(const std::string& filename) {
    4342    casa::File file(filename);
    4443    if ( !file.exists() ) {
     
    4645    }
    4746    filler_ = new PKSFiller(stable_);
    48     if (filler_->open(filename, rec)) {
    49       //    if (filler_->open(filename)) {
     47//    if (filler_->open(filename, rec)) {
     48    if (filler_->open(filename)) {
    5049      attached_ = true;
    5150      return;
    5251    }
    5352    filler_ = new NROFiller(stable_);
    54     if (filler_->open(filename, rec)) {
    55       //    if (filler_->open(filename)) {
     53//    if (filler_->open(filename, rec)) {
     54    if (filler_->open(filename)) {
    5655      attached_ = true;
    5756      return;
Note: See TracChangeset for help on using the changeset viewer.