summaryrefslogtreecommitdiffstats
path: root/c++/src
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2018-05-14 23:49:54 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2018-05-14 23:49:54 (GMT)
commit867933406c66c3dfc37be3b097e4ed3e0e833aa4 (patch)
treefb583dedd21ba5021a28b9fe61f7bfaa06028466 /c++/src
parentf1a33b351c456c0841fcb79b907707a9caa2fed5 (diff)
downloadhdf5-867933406c66c3dfc37be3b097e4ed3e0e833aa4.zip
hdf5-867933406c66c3dfc37be3b097e4ed3e0e833aa4.tar.gz
hdf5-867933406c66c3dfc37be3b097e4ed3e0e833aa4.tar.bz2
Fixed typos
Platforms tested: Linux/64 (jelly)
Diffstat (limited to 'c++/src')
-rw-r--r--c++/src/H5StrcreatProp.cpp12
1 files changed, 7 insertions, 5 deletions
diff --git a/c++/src/H5StrcreatProp.cpp b/c++/src/H5StrcreatProp.cpp
index b296a65..9c43326 100644
--- a/c++/src/H5StrcreatProp.cpp
+++ b/c++/src/H5StrcreatProp.cpp
@@ -32,7 +32,7 @@ namespace H5 {
//--------------------------------------------------------------------------
// Function: StrCreatPropList default constructor
///\brief Default constructor: Creates a string create property list
-// Programmer Binh-Minh Ribler - 2000
+// May 2018
//--------------------------------------------------------------------------
StrCreatPropList::StrCreatPropList() : PropList(H5P_STRING_CREATE) {}
@@ -41,7 +41,7 @@ StrCreatPropList::StrCreatPropList() : PropList(H5P_STRING_CREATE) {}
///\brief Copy constructor: makes a copy of the original
/// StrCreatPropList object.
///\param original - IN: StrCreatPropList instance to copy
-// Programmer Binh-Minh Ribler - 2000
+// May 2018
//--------------------------------------------------------------------------
StrCreatPropList::StrCreatPropList(const StrCreatPropList& original) : PropList(original) {}
@@ -50,7 +50,7 @@ StrCreatPropList::StrCreatPropList(const StrCreatPropList& original) : PropList(
///\brief Creates a file creation property list using the id of an
/// existing one.
///\param plist_id - IN: StrCreatPropList id to use
-// Programmer Binh-Minh Ribler - 2000
+// May 2018
//--------------------------------------------------------------------------
StrCreatPropList::StrCreatPropList(const hid_t plist_id) : PropList(plist_id) {}
@@ -59,8 +59,9 @@ StrCreatPropList::StrCreatPropList(const hid_t plist_id) : PropList(plist_id) {}
//--------------------------------------------------------------------------
// Function: StrCreatPropList::setCharEncoding
///\brief Sets the character encoding of the string.
+///\param encoding - IN: String encoding character set
///\exception H5::PropListIException
-// March 2018
+// May 2018
//--------------------------------------------------------------------------
void StrCreatPropList::setCharEncoding(H5T_cset_t encoding) const
{
@@ -75,8 +76,9 @@ void StrCreatPropList::setCharEncoding(H5T_cset_t encoding) const
//--------------------------------------------------------------------------
// Function: StrCreatPropList::getCharEncoding
///\brief Gets the character encoding of the string.
+///\return The string encoding character set
///\exception H5::PropListIException
-// March 2018
+// May 2018
//--------------------------------------------------------------------------
H5T_cset_t StrCreatPropList::getCharEncoding() const
{