summaryrefslogtreecommitdiffstats
path: root/c++/src/H5DaccProp.h
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2021-03-25 00:39:37 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2021-03-25 00:39:37 (GMT)
commitfeb20aac304b39e18c70f88cae2f7cf7d5c82db2 (patch)
treee15d7e751af4e3c42e77ea955d91db4cf27a71cf /c++/src/H5DaccProp.h
parentbdac2ecdbff2c389a222b3d93ff1eb1d23ec6b23 (diff)
downloadhdf5-feb20aac304b39e18c70f88cae2f7cf7d5c82db2.zip
hdf5-feb20aac304b39e18c70f88cae2f7cf7d5c82db2.tar.gz
hdf5-feb20aac304b39e18c70f88cae2f7cf7d5c82db2.tar.bz2
Formats the source and updates the gcc warning pragmas
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