summaryrefslogtreecommitdiffstats
path: root/c++/src/H5IdComponent.h
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2008-07-25 04:10:07 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2008-07-25 04:10:07 (GMT)
commit98fdd752a4fe4ab3519c4d6f4823d44fc61197fc (patch)
tree19efc455dbd8fa2e720af0b3586595b66bc24b58 /c++/src/H5IdComponent.h
parent836f7b53ccce4f67c1918b337c1a133191c58a98 (diff)
downloadhdf5-98fdd752a4fe4ab3519c4d6f4823d44fc61197fc.zip
hdf5-98fdd752a4fe4ab3519c4d6f4823d44fc61197fc.tar.gz
hdf5-98fdd752a4fe4ab3519c4d6f4823d44fc61197fc.tar.bz2
[svn-r15404] Purpose: Code correction
Description: Accidentally left p_setId in public section in the previous checkin. Moved it to "protected:" section. Platforms tested: Linux 2.6 (kagiso) SunOS 5.10 (linew) FreeBSD (duty)
Diffstat (limited to 'c++/src/H5IdComponent.h')
-rw-r--r--c++/src/H5IdComponent.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/c++/src/H5IdComponent.h b/c++/src/H5IdComponent.h
index 5bbfb71..7f573a1 100644
--- a/c++/src/H5IdComponent.h
+++ b/c++/src/H5IdComponent.h
@@ -85,13 +85,13 @@ class H5_DLLCPP IdComponent {
// Gets the name of the file, in which an HDF5 object belongs.
H5std_string p_get_file_name() const;
+ // Verifies that the given id is valid.
+ static bool p_valid_id(const hid_t obj_id);
+
// Sets the identifier of this object to a new value. - this one
// doesn't increment reference count
virtual void p_setId(const hid_t new_id) = 0;
- // Verifies that the given id is valid.
- static bool p_valid_id(const hid_t obj_id);
-
#endif // DOXYGEN_SHOULD_SKIP_THIS
}; // end class IdComponent