summaryrefslogtreecommitdiffstats
path: root/c++/src/H5StrType.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2005-08-13 20:53:35 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2005-08-13 20:53:35 (GMT)
commit6b45f5172ccb4311e0be9ae15da3758abb6b0e67 (patch)
tree5a7a112fe7a8a98c6fecb45b513789d15962eb3d /c++/src/H5StrType.h
parent6562465a2c2a58cfbc2f47bf60bb538f7a783933 (diff)
downloadhdf5-6b45f5172ccb4311e0be9ae15da3758abb6b0e67.zip
hdf5-6b45f5172ccb4311e0be9ae15da3758abb6b0e67.tar.gz
hdf5-6b45f5172ccb4311e0be9ae15da3758abb6b0e67.tar.bz2
[svn-r11245] Purpose:
Code cleanup Description: Trim trailing whitespace, which is making 'diff'ing the two branches difficult. Solution: Ran this script in each directory: foreach f (*.[ch] *.cpp) sed 's/[[:blank:]]*$//' $f > sed.out && mv sed.out $f end Platforms tested: FreeBSD 4.11 (sleipnir) Too minor to require h5committest
Diffstat (limited to 'c++/src/H5StrType.h')
-rw-r--r--c++/src/H5StrType.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/c++/src/H5StrType.h b/c++/src/H5StrType.h
index fbf4ac4..aef797d 100644
--- a/c++/src/H5StrType.h
+++ b/c++/src/H5StrType.h
@@ -31,25 +31,25 @@ class H5_DLLCPP StrType : public AtomType {
// Creates a string type with specified length - will be obsolete
StrType(const PredType& pred_type, const size_t size);
- // Gets the string datatype of the specified dataset
+ // Gets the string datatype of the specified dataset
StrType(const DataSet& dataset);
- // Retrieves the character set type of this string datatype.
+ // Retrieves the character set type of this string datatype.
H5T_cset_t getCset() const;
- // Sets character set to be used.
+ // Sets character set to be used.
void setCset(H5T_cset_t cset) const;
- // Retrieves the string padding method for this string datatype.
+ // Retrieves the string padding method for this string datatype.
H5T_str_t getStrpad() const;
- // Defines the storage mechanism for character strings.
+ // Defines the storage mechanism for character strings.
void setStrpad(H5T_str_t strpad) const;
// Returns this class name
virtual string fromClass () const { return ("StrType"); }
- // default constructor
+ // default constructor
StrType();
// Creates a string datatype using an existing id