summaryrefslogtreecommitdiffstats
path: root/c++/src/H5DaccProp.h
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2020-09-30 14:27:10 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2020-09-30 14:27:10 (GMT)
commitb2d661b508a7fc7a2592c13bc6bdc175551f075d (patch)
tree13baeb0d83a7c2a4c6299993c182b1227c2f6114 /c++/src/H5DaccProp.h
parent29ab58b58dce556639ea3154e262895773a8a8df (diff)
downloadhdf5-b2d661b508a7fc7a2592c13bc6bdc175551f075d.zip
hdf5-b2d661b508a7fc7a2592c13bc6bdc175551f075d.tar.gz
hdf5-b2d661b508a7fc7a2592c13bc6bdc175551f075d.tar.bz2
Clang-format of source files
Diffstat (limited to 'c++/src/H5DaccProp.h')
-rw-r--r--c++/src/H5DaccProp.h52
1 files changed, 28 insertions, 24 deletions
diff --git a/c++/src/H5DaccProp.h b/c++/src/H5DaccProp.h
index 111b4f5..a467fac 100644
--- a/c++/src/H5DaccProp.h
+++ b/c++/src/H5DaccProp.h
@@ -23,42 +23,46 @@ namespace H5 {
*/
// Inheritance: LinkAccPropList -> PropList -> IdComponent
class H5_DLLCPP DSetAccPropList : public LinkAccPropList {
- public:
- ///\brief Default dataset creation property list.
- static const DSetAccPropList& DEFAULT;
+ public:
+ ///\brief Default dataset creation property list.
+ static const DSetAccPropList &DEFAULT;
- // Creates a dataset creation property list.
- DSetAccPropList();
+ // Creates a dataset creation property list.
+ DSetAccPropList();
- // Sets the raw data chunk cache parameters.
- void setChunkCache(size_t rdcc_nslots, size_t rdcc_nbytes, double rdcc_w0) const;
+ // Sets the raw data chunk cache parameters.
+ void setChunkCache(size_t rdcc_nslots, size_t rdcc_nbytes, double rdcc_w0) const;
- // Retrieves the raw data chunk cache parameters.
- void getChunkCache(size_t &rdcc_nslots, size_t &rdcc_nbytes, double &rdcc_w0) const;
+ // Retrieves the raw data chunk cache parameters.
+ void getChunkCache(size_t &rdcc_nslots, size_t &rdcc_nbytes, double &rdcc_w0) const;
- ///\brief Returns this class name.
- virtual H5std_string fromClass () const { return("DSetAccPropList"); }
+ ///\brief Returns this class name.
+ virtual H5std_string
+ fromClass() const
+ {
+ return ("DSetAccPropList");
+ }
- // Copy constructor - same as the original DSetAccPropList.
- DSetAccPropList(const DSetAccPropList& orig);
+ // Copy constructor - same as the original DSetAccPropList.
+ DSetAccPropList(const DSetAccPropList &orig);
- // Creates a copy of an existing dataset creation property list
- // using the property list id.
- DSetAccPropList(const hid_t plist_id);
+ // Creates a copy of an existing dataset creation property list
+ // using the property list id.
+ DSetAccPropList(const hid_t plist_id);
- // Noop destructor.
- virtual ~DSetAccPropList();
+ // Noop destructor.
+ virtual ~DSetAccPropList();
#ifndef DOXYGEN_SHOULD_SKIP_THIS
- // Deletes the global constant, should only be used by the library
- static void deleteConstants();
+ // Deletes the global constant, should only be used by the library
+ static void deleteConstants();
- private:
- static DSetAccPropList* DEFAULT_;
+ private:
+ static DSetAccPropList *DEFAULT_;
- // Creates the global constant, should only be used by the library
- static DSetAccPropList* getConstant();
+ // Creates the global constant, should only be used by the library
+ static DSetAccPropList *getConstant();
#endif // DOXYGEN_SHOULD_SKIP_THIS