summaryrefslogtreecommitdiffstats
path: root/c++/src/H5DataType.h
diff options
context:
space:
mode:
Diffstat (limited to 'c++/src/H5DataType.h')
-rw-r--r--c++/src/H5DataType.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/c++/src/H5DataType.h b/c++/src/H5DataType.h
index 0fa1965..8e6b82e 100644
--- a/c++/src/H5DataType.h
+++ b/c++/src/H5DataType.h
@@ -7,9 +7,6 @@ namespace H5 {
class DataType : public H5Object {
public:
- // Default constructor
- DataType();
-
// Creates a datatype given its class and size
DataType( const H5T_class_t type_class, size_t size );
@@ -82,6 +79,9 @@ class DataType : public H5Object {
// Creates a copy of an existing DataType using its id
DataType( const hid_t type_id, bool predtype = false );
+ // Default constructor
+ DataType();
+
virtual ~DataType();
protected: