summaryrefslogtreecommitdiffstats
path: root/c++/src/H5FloatType.h
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2017-04-23 21:40:27 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2017-04-23 21:40:27 (GMT)
commit326030c665c53dfb04491a92ec88e38749bfbeb0 (patch)
tree161d3ee173a6078f171db492ac23765f9314ea3c /c++/src/H5FloatType.h
parent816fb3b0fc2043ec04805bc4853d54d2cbfd188f (diff)
downloadhdf5-326030c665c53dfb04491a92ec88e38749bfbeb0.zip
hdf5-326030c665c53dfb04491a92ec88e38749bfbeb0.tar.gz
hdf5-326030c665c53dfb04491a92ec88e38749bfbeb0.tar.bz2
Format changes only.
Platforms tested: Linux/32 2.6 (jam) - very minor
Diffstat (limited to 'c++/src/H5FloatType.h')
-rw-r--r--c++/src/H5FloatType.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/c++/src/H5FloatType.h b/c++/src/H5FloatType.h
index a784105..67eee66 100644
--- a/c++/src/H5FloatType.h
+++ b/c++/src/H5FloatType.h
@@ -27,34 +27,34 @@ namespace H5 {
class H5_DLLCPP FloatType : public AtomType {
public:
// Creates a floating-point type using a predefined type.
- FloatType( const PredType& pred_type );
+ FloatType(const PredType& pred_type);
// Gets the floating-point datatype of the specified dataset.
- FloatType( const DataSet& dataset );
+ FloatType(const DataSet& dataset);
// Retrieves the exponent bias of a floating-point type.
size_t getEbias() const;
// Sets the exponent bias of a floating-point type.
- void setEbias( size_t ebias ) const;
+ void setEbias(size_t ebias) const;
// Retrieves floating point datatype bit field information.
- void getFields( size_t& spos, size_t& epos, size_t& esize, size_t& mpos, size_t& msize ) const;
+ void getFields(size_t& spos, size_t& epos, size_t& esize, size_t& mpos, size_t& msize) const;
// Sets locations and sizes of floating point bit fields.
- void setFields( size_t spos, size_t epos, size_t esize, size_t mpos, size_t msize ) const;
+ void setFields(size_t spos, size_t epos, size_t esize, size_t mpos, size_t msize) const;
// Retrieves the internal padding type for unused bits in floating-point datatypes.
- H5T_pad_t getInpad( H5std_string& pad_string ) const;
+ H5T_pad_t getInpad(H5std_string& pad_string) const;
// Fills unused internal floating point bits.
- void setInpad( H5T_pad_t inpad ) const;
+ void setInpad(H5T_pad_t inpad) const;
// Retrieves mantissa normalization of a floating-point datatype.
- H5T_norm_t getNorm( H5std_string& norm_string ) const;
+ H5T_norm_t getNorm(H5std_string& norm_string) const;
// Sets the mantissa normalization of a floating-point datatype.
- void setNorm( H5T_norm_t norm ) const;
+ void setNorm(H5T_norm_t norm) const;
///\brief Returns this class name.
virtual H5std_string fromClass () const { return("FloatType"); }
@@ -63,10 +63,10 @@ class H5_DLLCPP FloatType : public AtomType {
FloatType();
// Creates a floating-point datatype using an existing id.
- FloatType( const hid_t existing_id );
+ FloatType(const hid_t existing_id);
// Copy constructor: makes a copy of the original FloatType object.
- FloatType( const FloatType& original );
+ FloatType(const FloatType& original);
// Noop destructor.
virtual ~FloatType();