summaryrefslogtreecommitdiffstats
path: root/c++/src/H5AcreatProp.h
diff options
context:
space:
mode:
Diffstat (limited to 'c++/src/H5AcreatProp.h')
-rw-r--r--c++/src/H5AcreatProp.h48
1 files changed, 26 insertions, 22 deletions
diff --git a/c++/src/H5AcreatProp.h b/c++/src/H5AcreatProp.h
index 9f81897..6be2506 100644
--- a/c++/src/H5AcreatProp.h
+++ b/c++/src/H5AcreatProp.h
@@ -7,7 +7,7 @@
* This file is part of HDF5. The full HDF5 copyright notice, including *
* terms governing use, modification, and redistribution, is contained in *
* the COPYING file, which can be found at the root of the source code *
- * distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. *
+ * distribution tree, or in https://www.hdfgroup.org/licenses. *
* If you do not have access to either file, you may request a copy from *
* help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
@@ -23,39 +23,43 @@ namespace H5 {
*/
// Inheritance: StrCreatPropList -> PropList -> IdComponent
class H5_DLLCPP AttrCreatPropList : public StrCreatPropList {
- public:
- ///\brief Default attribute creation property list.
- static const AttrCreatPropList& DEFAULT;
+ public:
+ ///\brief Default attribute creation property list.
+ static const AttrCreatPropList &DEFAULT;
- // Creates a attribute creation property list.
- AttrCreatPropList();
+ // Creates a attribute creation property list.
+ AttrCreatPropList();
- ///\brief Returns this class name.
- virtual H5std_string fromClass () const { return("AttrCreatPropList"); }
+ ///\brief Returns this class name.
+ virtual H5std_string
+ fromClass() const
+ {
+ return ("AttrCreatPropList");
+ }
- // Copy constructor: same as the original AttrCreatPropList.
- AttrCreatPropList(const AttrCreatPropList& original);
+ // Copy constructor: same as the original AttrCreatPropList.
+ AttrCreatPropList(const AttrCreatPropList &original);
- // Creates a copy of an existing attribute creation property list
- // using the property list id.
- AttrCreatPropList(const hid_t acpl_id);
+ // Creates a copy of an existing attribute creation property list
+ // using the property list id.
+ AttrCreatPropList(const hid_t acpl_id);
- // Noop destructor
- virtual ~AttrCreatPropList();
+ // Noop destructor
+ virtual ~AttrCreatPropList();
#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 AttrCreatPropList* DEFAULT_;
+ private:
+ static AttrCreatPropList *DEFAULT_;
- // Creates the global constant, should only be used by the library
- static AttrCreatPropList* getConstant();
+ // Creates the global constant, should only be used by the library
+ static AttrCreatPropList *getConstant();
#endif // DOXYGEN_SHOULD_SKIP_THIS
-}; // end of AttrCreatPropList
+}; // end of AttrCreatPropList
} // namespace H5