|
| | Group (const Handle &gid) |
| |
| void | addLink (const H5Object &obj, const String &name) const |
| |
| bool | eraseLink (const String &name) const |
| |
| bool | hasGroup (const String &name) const |
| |
| Ref< Group > | getGroup (const String &name) const |
| |
| Ref< Group > | findGroup (const String &name) const |
| |
| Ref< Group > | newGroup (const String &name) const |
| |
| bool | eraseGroup (const String &name) const |
| |
| Array< String > | listGroups () const |
| |
| Array< String > | listAllGroups () const |
| |
| bool | hasDataSet (const String &name) const |
| |
| Ref< DataSet > | getDataSet (const String &name) const |
| |
| template<class T > |
| void | getDataSet (T &data, const String &name) const |
| |
| template<class T , int N> |
| void | getDataSet (const Array< T, N > &data, const String &name) const |
| |
| Ref< DataSet > | findDataSet (const String &name) const |
| |
| template<class T > |
| bool | findDataSet (T &data, const String &name) const |
| |
| template<class T , int N> |
| bool | findDataSet (const Array< T, N > &data, const String &name) const |
| |
| Ref< DataSet > | newDataSet (const String &name, const DataType &type, const DataSpace &space, int flags=0) const |
| |
| bool | eraseDataSet (const String &name) const |
| |
| template<class T > |
| void | setDataSet (const String &name, const T &data) const |
| |
| Array< String > | listDataSets () const |
| |
| Array< String > | listAllDataSets () const |
| |
| lint | getID () const |
| |
| String | getName () const |
| |
| String | getContext () const |
| |
| bool | hasAttribute (const String &name) const |
| |
| Attribute | getAttribute (const String &name) const |
| |
| template<class T > |
| void | getAttribute (T &value, const String &name) const |
| |
| template<class T , int N> |
| void | getAttribute (const Array< T, N > &value, const String &name) const |
| |
| Attribute | findAttribute (const String &name) const |
| |
| template<class T > |
| bool | findAttribute (T &value, const String &name) const |
| |
| template<class T , int N> |
| bool | findAttribute (const Array< T, N > &value, const String &name) const |
| |
| Attribute | newAttribute (const String &name, const DataType &type) const |
| |
| Attribute | newAttribute (const String &name, const DataType &type, const DataSpace &space) const |
| |
| template<class T > |
| void | setAttribute (const String &name, const T &value) const |
| |
| Array< String > | listAttributes () const |
| |
| virtual Class * | getClass () const |
| | Returns the Class instance representing the runtime class of this object. More...
|
| |
| virtual String | toString () const |
| | Returns a short textual description of this object. More...
|
| |
| virtual long | hashValue () const |
| | Returns a hash value for this object. More...
|
| |
| virtual bool | equals (const Ref< Object > &obj) const |
| | Tests whether two objects are equal. More...
|
| |
| Ref< Object > | clone () const |
| | Returns a copy of this object. More...
|
| |