Ignore:
Timestamp:
10/04/16 18:20:50 (8 years ago)
Author:
Takeshi Nakazato
Message:

New Development: No

JIRA Issue: No

Ready for Test: Yes/No?

Interface Changes: Yes/No?

What Interface Changed: Please list interface changes

Test Programs: List test programs

Put in Release Notes: Yes/No?

Module(s): Module Names change impacts.

Description: Describe your changes here...


Check-in asap modifications from Jim regarding casacore namespace conversion.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/MSFillerWrapper.h

    r3071 r3106  
    3939  virtual ~MSFillerWrapper() { close() ; }
    4040
    41   void open(const std::string& filename, const casa::Record& rec)
     41  void open(const std::string& filename, const casacore::Record& rec)
    4242  {
    43     casa::File file( filename ) ;
     43    casacore::File file( filename ) ;
    4444    if ( !file.exists() ) {
    45       throw casa::AipsError( "File does not exist" ) ;
     45      throw casacore::AipsError( "File does not exist" ) ;
    4646    }
    4747    filler_ = new MSFiller( stable_ ) ;
     
    5151    }
    5252    else {
    53       throw casa::AipsError( "Failed to open file" ) ;
     53      throw casacore::AipsError( "Failed to open file" ) ;
    5454    }
    5555  }
     
    8282  MSFillerWrapper& operator=(const MSFillerWrapper&) ;
    8383
    84   casa::CountedPtr<MSFiller> filler_ ;
     84  casacore::CountedPtr<MSFiller> filler_ ;
    8585  bool attached_ ;
    86   casa::CountedPtr<Scantable> stable_ ;
     86  casacore::CountedPtr<Scantable> stable_ ;
    8787};
    8888
Note: See TracChangeset for help on using the changeset viewer.