casa
$Rev:20696$
|
Some attributes of a table. More...
#include <TableAttr.h>
Public Member Functions | |
TableAttr () | |
Default constructor results in empty name. | |
TableAttr (const Table &table) | |
Construct the attributes from the table. | |
TableAttr (const String &name, Bool openWritable=False) | |
Construct with given values. | |
TableAttr (const String &name, Bool openWritable, const TableLock &) | |
TableAttr (const TableAttr &that) | |
Copy constructor (copy semantics). | |
TableAttr & | operator= (const TableAttr &that) |
Assignment (copy semantics). | |
TableAttr & | operator= (const Table &table) |
~TableAttr () | |
void | set (const Table &table) |
Set the object to for another table. | |
void | setRW () |
Set the keyword to read/write access. | |
void | setName (const String &name) |
const String & | name () const |
Get info. | |
Bool | openWritable () const |
const TableLock & | lockOptions () const |
Private Attributes | |
String | name_p |
Bool | openWritable_p |
TableLock | lockOptions_p |
Some attributes of a table.
Internal
This class holds some attributes of a table. These attributes are name, readable/writable, and lock options.
The primary use of the class is to be able to pass the various attributes of the parent table to its subtables (e.g. in classes like TableRecord and TableKeyword ).
This class makes it possible to have more attributes without having to alter the classes using subtables.
Definition at line 77 of file TableAttr.h.
Default constructor results in empty name.
casa::TableAttr::TableAttr | ( | const Table & | table | ) | [explicit] |
Construct the attributes from the table.
casa::TableAttr::TableAttr | ( | const String & | name, |
Bool | openWritable = False |
||
) | [explicit] |
Construct with given values.
casa::TableAttr::TableAttr | ( | const String & | name, |
Bool | openWritable, | ||
const TableLock & | |||
) |
casa::TableAttr::TableAttr | ( | const TableAttr & | that | ) |
Copy constructor (copy semantics).
const TableLock& casa::TableAttr::lockOptions | ( | ) | const [inline] |
Definition at line 121 of file TableAttr.h.
References lockOptions_p.
const String& casa::TableAttr::name | ( | ) | const [inline] |
Get info.
Definition at line 117 of file TableAttr.h.
References name_p.
Referenced by setName(), and casa::TableKeyword::tableName().
Bool casa::TableAttr::openWritable | ( | ) | const [inline] |
Definition at line 119 of file TableAttr.h.
References openWritable_p.
void casa::TableAttr::set | ( | const Table & | table | ) |
Set the object to for another table.
void casa::TableAttr::setName | ( | const String & | name | ) | [inline] |
Definition at line 112 of file TableAttr.h.
void casa::TableAttr::setRW | ( | ) | [inline] |
Set the keyword to read/write access.
If the table is already open, it will be reopened with read/write access if the table is writable.
Definition at line 109 of file TableAttr.h.
References openWritable_p, and casa::True.
TableLock casa::TableAttr::lockOptions_p [private] |
Definition at line 128 of file TableAttr.h.
Referenced by lockOptions().
String casa::TableAttr::name_p [private] |
Bool casa::TableAttr::openWritable_p [private] |
Definition at line 127 of file TableAttr.h.
Referenced by openWritable(), and setRW().