summaryrefslogtreecommitdiffstats
path: root/c++/src/H5IdComponent.h
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2004-07-16 05:30:03 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2004-07-16 05:30:03 (GMT)
commit5bc3314c9b3636025e60a0b2bd3a894ae9e33c84 (patch)
tree95d603798157bb61fc639b9a44b5f334c4f51037 /c++/src/H5IdComponent.h
parent909b3f6beaa5bec01c9bb223c6eacebbac470242 (diff)
downloadhdf5-5bc3314c9b3636025e60a0b2bd3a894ae9e33c84.zip
hdf5-5bc3314c9b3636025e60a0b2bd3a894ae9e33c84.tar.gz
hdf5-5bc3314c9b3636025e60a0b2bd3a894ae9e33c84.tar.bz2
[svn-r8890] Purpose: Code cleanup
Description: Renamed some private functions appropriately. Moved some functions from Group into the base class CommonFG for H5File to use too. Updated function headers as progressively reviewing the generated RM. Also, fixed a daily test failure on kelgia by adding #ifndef H5_NO_STD to H5IdComponent.h. I tried to test on kelgia before my checkin last time, but something was not right in my environment, and I wasn't able to test. I did test on three platforms though. Platforms tested: SunOS 5.7 (arabica) Linux 2.4 (eirene) Windows XP
Diffstat (limited to 'c++/src/H5IdComponent.h')
-rw-r--r--c++/src/H5IdComponent.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/c++/src/H5IdComponent.h b/c++/src/H5IdComponent.h
index 73305ef..12dc97f 100644
--- a/c++/src/H5IdComponent.h
+++ b/c++/src/H5IdComponent.h
@@ -73,7 +73,11 @@ class H5_DLLCPP IdComponent {
IdComponent();
// Gets the name of the file, in which an HDF5 object belongs.
+#ifndef H5_NO_STD
std::string p_get_file_name() const;
+#else
+ string p_get_file_name() const;
+#endif // H5_NO_STD
// Gets the id of the H5 file in which the given object is located.
hid_t p_get_file_id();