From 867933406c66c3dfc37be3b097e4ed3e0e833aa4 Mon Sep 17 00:00:00 2001 From: Binh-Minh Ribler Date: Mon, 14 May 2018 18:49:54 -0500 Subject: Fixed typos Platforms tested: Linux/64 (jelly) --- c++/src/H5StrcreatProp.cpp | 12 +++++++----- 1 file 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 { -- cgit v0.12 From 3759814975e43229892f238e8451fb0ceea16095 Mon Sep 17 00:00:00 2001 From: Binh-Minh Ribler Date: Mon, 14 May 2018 20:36:43 -0500 Subject: Fixed typos Platforms tested: Linux/64 (jelly) --- c++/src/H5StrcreatProp.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/c++/src/H5StrcreatProp.cpp b/c++/src/H5StrcreatProp.cpp index 9c43326..a12dc00 100644 --- a/c++/src/H5StrcreatProp.cpp +++ b/c++/src/H5StrcreatProp.cpp @@ -13,11 +13,6 @@ #include -#include - using std::cerr; - using std::endl; - - #include "H5Include.h" #include "H5Exception.h" #include "H5IdComponent.h" -- cgit v0.12