Ignore:
Timestamp:
08/02/10 12:55:43 (14 years ago)
Author:
Takeshi Nakazato
Message:

Makefile is updated to be able to compile codes using make.
Fixed a few things in NROFiller class.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/newfiller/src/NROFiller.h

    r1792 r1812  
    4242{
    4343  public:
    44     NROFiller(casa::CountedPtr<Scantable> stable);
     44    explicit NROFiller(casa::CountedPtr<Scantable> stable);
    4545    virtual ~NROFiller();
    4646
    47     virtual bool open(const std::string& filename) ;
    48     virtual void fill() ;
    49     virtual void close() ;
     47    bool open(const std::string& filename) ;
     48    void fill() ;
     49    void close() ;
    5050
    5151  protected:
    5252
    5353  private:
     54    NROFiller();
     55    NROFiller(const NROFiller&);
     56    NROFiller& operator=(const NROFiller&);
     57
    5458    // pointer to the reader
    5559    NROReader *reader_ ;
Note: See TracChangeset for help on using the changeset viewer.