Changeset 849 for trunk/src/STSubTable.h


Ignore:
Timestamp:
02/28/06 10:47:19 (18 years ago)
Author:
mar637
Message:

added assignment operator and additional constructor

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/STSubTable.h

    r808 r849  
    2020namespace asap {
    2121
     22class Scantable;
    2223/**
    2324Abstract base class for all subtables in the Scantable class.
     
    2930class STSubTable : public SDLog {
    3031public:
    31   STSubTable( const casa::String& name,
    32               casa::Table::TableType tt = casa::Table::Memory );
     32  STSubTable() {;}
     33  STSubTable( casa::Table tab );
     34  STSubTable( const Scantable& parent,
     35              const casa::String& name );
    3336
    3437  virtual ~STSubTable();
     38
     39  STSubTable& operator=(const STSubTable& other);
     40
    3541
    3642
     
    5157  casa::Table table() { return table_; }
    5258
    53   casa::Table::TableType tableType() const { return type_; }
    54 
    5559protected:
    5660  casa::Table table_;
     
    5862
    5963private:
    60   casa::Table::TableType type_;
    61 
    6264};
    6365
Note: See TracChangeset for help on using the changeset viewer.