summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLarry Knox <lrknox@hdfgroup.org>2017-11-23 02:17:21 (GMT)
committerLarry Knox <lrknox@hdfgroup.org>2017-11-23 02:17:21 (GMT)
commitb984fb31335102eaf61b95419793664d9ff9f9de (patch)
tree659a2782ed4f7ebd751fa058e3f33924b3358f42
parent83122c82b2eab93a112b84713f03d813f1601328 (diff)
parent4cb9945cdb39f4a195b70277c31d0ba6bb6562b1 (diff)
downloadhdf5-b984fb31335102eaf61b95419793664d9ff9f9de.zip
hdf5-b984fb31335102eaf61b95419793664d9ff9f9de.tar.gz
hdf5-b984fb31335102eaf61b95419793664d9ff9f9de.tar.bz2
Merge pull request #796 in HDFFV/hdf5 from ~BMRIBLER/hdf5_1_8_20-bmr:hdf5_1_8_20 to hdf5_1_8_20
* commit '4cb9945cdb39f4a195b70277c31d0ba6bb6562b1': Fixed documentation warnings
-rw-r--r--c++/src/H5DataType.cpp106
-rw-r--r--c++/src/H5DataType.h3
2 files changed, 55 insertions, 54 deletions
diff --git a/c++/src/H5DataType.cpp b/c++/src/H5DataType.cpp
index ffa2a21..d4f4e70 100644
--- a/c++/src/H5DataType.cpp
+++ b/c++/src/H5DataType.cpp
@@ -243,35 +243,6 @@ void DataType::copy(const DataSet& dset)
}
//--------------------------------------------------------------------------
-// Function: DataType::p_decode
-// Purpose Returns an id of a type by decoding the binary object
-/// description of this datatype.
-///\exception H5::DataTypeIException
-// Programmer Binh-Minh Ribler - Sept 2017
-//--------------------------------------------------------------------------
-hid_t DataType::p_decode() const
-{
- // Make sure that the buffer can be decoded
- if (encoded_buf == NULL)
- {
- throw DataTypeIException("DataType::p_decode", "No encoded buffer");
- }
-
- // Call C function to decode the binary object description
- hid_t encoded_dtype_id = H5Tdecode(encoded_buf);
-
- // If H5Tdecode fails, raise exception
- if (encoded_dtype_id < 0)
- {
- throw DataTypeIException("DataType::p_decode", "H5Tdecode failed");
- }
- else
- {
- return(encoded_dtype_id);
- }
-}
-
-//--------------------------------------------------------------------------
// Function: DataType::decode
///\brief Returns a DataType instance by decoding the binary object
/// description of this datatype.
@@ -391,28 +362,6 @@ bool DataType::operator==(const DataType& compared_type) const
}
//--------------------------------------------------------------------------
-// Function: DataType::p_commit (private)
-//\brief Commits a transient datatype to a file, creating a new
-// named datatype
-//\param loc_id - IN: The id of either a file, group, dataset, named
-// datatype, or attribute.
-//\param name - IN: Name of the datatype
-//\exception H5::DataTypeIException
-// Programmer Binh-Minh Ribler - 2000
-// Modification:
-// Copied from DataType::commit and made into private function
-// to be commonly used by several overloads of DataType::commit.
-// BMR - Jan, 2007
-//--------------------------------------------------------------------------
-void DataType::p_commit(hid_t loc_id, const char* name)
-{
- // Call C routine to commit the transient datatype
- herr_t ret_value = H5Tcommit2(loc_id, name, id, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
- if(ret_value < 0)
- throw DataTypeIException(inMemFunc("p_commit"), "H5Tcommit2 failed");
-}
-
-//--------------------------------------------------------------------------
// Function: DataType::commit
///\brief Commits a transient datatype to a file, creating a new
/// named datatype
@@ -857,7 +806,58 @@ hid_t DataType::getId() const
#ifndef DOXYGEN_SHOULD_SKIP_THIS
//--------------------------------------------------------------------------
-// Function: DataType::p_opentype (private)
+// Function: DataType::p_commit (private)
+//\brief Commits a transient datatype to a file, creating a new
+// named datatype
+//\param loc_id - IN: The id of either a file, group, dataset, named
+// datatype, or attribute.
+//\param name - IN: Name of the datatype
+//\exception H5::DataTypeIException
+// Programmer Binh-Minh Ribler - 2000
+// Modification:
+// Copied from DataType::commit and made into private function
+// to be commonly used by several overloads of DataType::commit.
+// BMR - Jan, 2007
+//--------------------------------------------------------------------------
+void DataType::p_commit(hid_t loc_id, const char* name)
+{
+ // Call C routine to commit the transient datatype
+ herr_t ret_value = H5Tcommit2(loc_id, name, id, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
+ if(ret_value < 0)
+ throw DataTypeIException(inMemFunc("p_commit"), "H5Tcommit2 failed");
+}
+
+//--------------------------------------------------------------------------
+// Function: DataType::p_decode (protected)
+// Purpose Returns an id of a type by decoding the binary object
+/// description of this datatype.
+///\exception H5::DataTypeIException
+// Programmer Binh-Minh Ribler - Sept 2017
+//--------------------------------------------------------------------------
+hid_t DataType::p_decode() const
+{
+ // Make sure that the buffer can be decoded
+ if (encoded_buf == NULL)
+ {
+ throw DataTypeIException("DataType::p_decode", "No encoded buffer");
+ }
+
+ // Call C function to decode the binary object description
+ hid_t encoded_dtype_id = H5Tdecode(encoded_buf);
+
+ // If H5Tdecode fails, raise exception
+ if (encoded_dtype_id < 0)
+ {
+ throw DataTypeIException("DataType::p_decode", "H5Tdecode failed");
+ }
+ else
+ {
+ return(encoded_dtype_id);
+ }
+}
+
+//--------------------------------------------------------------------------
+// Function: DataType::p_opentype (protected)
///\brief Opens an HDF5 datatype given its name
///\param loc - IN: Location of the type
///\param type_name - IN: Datatype name
@@ -877,7 +877,7 @@ hid_t DataType::p_opentype(const H5Location& loc, const char *type_name) const
}
//--------------------------------------------------------------------------
-// Function: DataType::p_setId
+// Function: DataType::p_setId (protected)
///\brief Sets the identifier of this object to a new value.
///
///\exception H5::IdComponentException when the attempt to close the HDF5
diff --git a/c++/src/H5DataType.h b/c++/src/H5DataType.h
index 5e10c20..29cc990 100644
--- a/c++/src/H5DataType.h
+++ b/c++/src/H5DataType.h
@@ -150,7 +150,6 @@ class H5_DLLCPP DataType : public H5Object {
// Opens a datatype and returns the id.
hid_t p_opentype(const H5Location& loc, const char* dtype_name) const;
-
#endif // DOXYGEN_SHOULD_SKIP_THIS
private:
@@ -162,7 +161,9 @@ class H5_DLLCPP DataType : public H5Object {
// Friend function to set DataType id. For library use only.
friend void f_DataType_setId(DataType* dtype, hid_t new_id);
+#ifndef DOXYGEN_SHOULD_SKIP_THIS
void p_commit(hid_t loc_id, const char* name);
+#endif // DOXYGEN_SHOULD_SKIP_THIS
}; // end of DataType
} // namespace H5