[svn-r12404] Purpose: Fix typos/formats
Description:
Fixed typos and re-arranged some functions to be in sync with 1.6.
Platforms tested:
Linux 2.4 (heping)
SunOS 5.9 (shanti)
AIX 5.1 (copper)
This commit is contained in:
@@ -67,13 +67,13 @@ class H5_DLLCPP PropList : public IdComponent {
|
||||
|
||||
// Query the value of a property in a property list.
|
||||
void getProperty(const char* name, void* value) const;
|
||||
H5std_string getProperty(const char* name) const;
|
||||
void getProperty(const H5std_string& name, void* value) const;
|
||||
H5std_string getProperty(const char* name) const;
|
||||
H5std_string getProperty(const H5std_string& name) const;
|
||||
|
||||
// Set a property's value in a property list.
|
||||
void setProperty(const char* name, void* charptr) const;
|
||||
void setProperty(const char* name, const char* value) const;
|
||||
void setProperty(const char* name, void* value) const;
|
||||
void setProperty(const char* name, const char* charptr) const;
|
||||
void setProperty(const char* name, H5std_string& strg) const;
|
||||
void setProperty(const H5std_string& name, void* value) const;
|
||||
void setProperty(const H5std_string& name, H5std_string& strg) const;
|
||||
|
||||
Reference in New Issue
Block a user