diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2004-07-31 04:54:08 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2004-07-31 04:54:08 (GMT) |
commit | fddc43caad965b3cfef964ba02195d211d51669e (patch) | |
tree | 9f88cbfe03f70b0f9df981da9ae71b5557665227 /c++/src/H5FcreatProp.cpp | |
parent | e8671d70c3bf755472c54d9740c694757bb5749e (diff) | |
download | hdf5-fddc43caad965b3cfef964ba02195d211d51669e.zip hdf5-fddc43caad965b3cfef964ba02195d211d51669e.tar.gz hdf5-fddc43caad965b3cfef964ba02195d211d51669e.tar.bz2 |
[svn-r8973] Purpose: Updated documentation
Description:
Updated various function headers for the RM as reviewing progresses.
Rearranged functions in header files for more sensible look of the RM.
Platforms tested:
SunOS 5.7 (arabica)
Linux 2.4 (verbena)
Diffstat (limited to 'c++/src/H5FcreatProp.cpp')
-rw-r--r-- | c++/src/H5FcreatProp.cpp | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/c++/src/H5FcreatProp.cpp b/c++/src/H5FcreatProp.cpp index f2a683a..cd79b93 100644 --- a/c++/src/H5FcreatProp.cpp +++ b/c++/src/H5FcreatProp.cpp @@ -32,12 +32,21 @@ const FileCreatPropList FileCreatPropList::DEFAULT( H5P_DEFAULT ); //-------------------------------------------------------------------------- // Function: FileCreatPropList default constructor -///\brief Default constructor: Creates a file create property list +///\brief Default constructor: creates a file creation property list. // Programmer Binh-Minh Ribler - 2000 //-------------------------------------------------------------------------- FileCreatPropList::FileCreatPropList() : PropList( H5P_FILE_CREATE ) {} //-------------------------------------------------------------------------- +// Function: FileCreatPropList overloaded constructor +///\brief Creates a file creation property list using the id of an +/// existing one. +///\param plist_id - IN: FileCreatPropList id to use +// Programmer Binh-Minh Ribler - 2000 +//-------------------------------------------------------------------------- +FileCreatPropList::FileCreatPropList(const hid_t plist_id) : PropList(plist_id) {} + +//-------------------------------------------------------------------------- // Function: FileCreatPropList copy constructor ///\brief Copy constructor: makes a copy of the original FileCreatPropList object. ///\param original - IN: FileCreatPropList instance to copy |