Ignore:
Timestamp:
07/30/10 16:49:24 (14 years ago)
Author:
Malte Marquarding
Message:

Make python wrapper noncopyable

File:
1 edited

Legend:

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

    r1786 r1787  
    3131public:
    3232
    33   FillerWrapper() : filler_(0), attached_(false), stable_(0) {;}
    34 
    35   FillerWrapper(ScantableWrapper tbl) : filler_(0), attached_(false)
     33  explicit FillerWrapper(ScantableWrapper tbl) : filler_(0), attached_(false)
    3634  { stable_ = tbl.getCP(); }
    3735
     
    7775private:
    7876
     77  FillerWrapper() {;}
     78  FillerWrapper(const FillerWrapper& other) {;}
     79
    7980  casa::CountedPtr<FillerBase> filler_;
    8081  bool attached_;
Note: See TracChangeset for help on using the changeset viewer.