Changes in trunk/src/FillerWrapper.h [1904:1819]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/FillerWrapper.h
r1904 r1819 16 16 #include <casa/Exceptions.h> 17 17 #include <casa/Utilities/CountedPtr.h> 18 #include <casa/Containers/Record.h>19 18 #include <casa/OS/File.h> 20 19 … … 39 38 40 39 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) { 43 42 casa::File file(filename); 44 43 if ( !file.exists() ) { … … 46 45 } 47 46 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)) { 50 49 attached_ = true; 51 50 return; 52 51 } 53 52 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)) { 56 55 attached_ = true; 57 56 return;
Note:
See TracChangeset
for help on using the changeset viewer.