Changeset 22 for trunk/src/SDMemTable.h


Ignore:
Timestamp:
07/06/04 11:12:48 (20 years ago)
Author:
mmarquar
Message:

Removed irrelevantr member function "name". Added function to return number of rows in table.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/SDMemTable.h

    r21 r22  
    103103  virtual void summary() const;
    104104 
    105   // the (irrelevant) name
    106   std::string name() const;
    107 
    108105  // write to disk as aips++ table
    109106  void makePersistent(const std::string& filename);
     
    122119  Int nChan() const;
    123120
     121  // return the number of rows (integrations) in the table
     122  Int nRows() const { return table_.nrow(); }
     123
    124124  // return a row as a Masked array, internally converting uChar flags
    125125  // to bool mask
     
    128128
    129129private:
    130   // set up tabel structure
     130  // set up table structure
    131131  void setup();
    132132  // the current cursor into the array
Note: See TracChangeset for help on using the changeset viewer.