69 const PropList &create_plist = PropList::DEFAULT)
const;
71 const PropList &create_plist = PropList::DEFAULT)
const;
75 Attribute openAttribute(
const char *name)
const;
76 Attribute openAttribute(
const H5std_string &name)
const;
80 Attribute openAttribute(
const unsigned int idx)
const;
83 int iterateAttrs(
attr_operator_t user_op,
unsigned *idx = NULL,
void *op_data = NULL);
86 void visit(H5_index_t idx_type, H5_iter_order_t order,
visit_operator_t user_op,
void *op_data,
90 unsigned objVersion()
const;
93 int getNumAttrs()
const;
96 bool attrExists(
const char *name)
const;
97 bool attrExists(
const H5std_string &name)
const;
100 void renameAttr(
const char *oldname,
const char *newname)
const;
101 void renameAttr(
const H5std_string &oldname,
const H5std_string &newname)
const;
104 void removeAttr(
const char *name)
const;
105 void removeAttr(
const H5std_string &name)
const;
108 virtual hid_t
getId() const H5_OVERRIDE = 0;
112 ssize_t getObjName(
char *obj_name,
size_t buf_size = 0) const;
113 ssize_t getObjName(H5std_string &obj_name,
size_t len = 0) const;
114 H5std_string getObjName() const;
116#ifndef DOXYGEN_SHOULD_SKIP_THIS
124 virtual void p_setId(
const hid_t new_id) H5_OVERRIDE = 0;
Class Attribute operates on HDF5 attributes.
Definition H5Attribute.h:28
Class DataSpace inherits from IdComponent and provides wrappers for the HDF5's dataspaces.
Definition H5DataSpace.h:24
Class DataType provides generic operations on HDF5 datatypes.
Definition H5DataType.h:27
H5Location is an abstract base class, added in version 1.8.12.
Definition H5Location.h:30
Class H5Object is a bridge between H5Location and DataSet, DataType, and Group.
Definition H5Object.h:64
virtual hid_t getId() const H5_OVERRIDE=0
Class PropList inherits from IdComponent and provides wrappers for the HDF5 generic property list.
Definition H5PropList.h:24
void * opData
Definition H5Object.h:52
H5Object * location
Definition H5Object.h:53
attr_operator_t op
Definition H5Object.h:51
void * opData
Definition H5Object.h:60
visit_operator_t op
Definition H5Object.h:59
H5Object * obj
Definition H5Object.h:61
Definition H5AbstractDs.cpp:33
int(* visit_operator_t)(H5Object &obj, const H5std_string attr_name, const H5O_info_t *oinfo, void *operator_data)
Definition H5Object.h:45
void(* attr_operator_t)(H5Object &loc, const H5std_string attr_name, void *operator_data)
Definition H5Object.h:42