summaryrefslogtreecommitdiffstats
path: root/c++/test/ttypes.cpp
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2017-10-18 04:56:16 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2017-10-18 04:56:16 (GMT)
commit78ab45cb72cba95d2be5f12d9c44290696013741 (patch)
treec678ae7ba339001c806f90cffbb6252b020c38fe /c++/test/ttypes.cpp
parente9f1081a40611105bf6f610bb22dc8092896ba83 (diff)
downloadhdf5-78ab45cb72cba95d2be5f12d9c44290696013741.zip
hdf5-78ab45cb72cba95d2be5f12d9c44290696013741.tar.gz
hdf5-78ab45cb72cba95d2be5f12d9c44290696013741.tar.bz2
Adding new C++ wrappers
Description: - Added overloaded wrappers for H5Oget_info and H5Oget_info_by_name // Retrieves information about an object void getObjectInfo(H5O_info_t *oinfo) const; void getObjectInfo(const char *name, H5O_info_t *oinfo, const LinkAccPropList& lapl = LinkAccPropList::DEFAULT) const; void getObjectInfo(const H5std_string& name, H5O_info_t *oinfo, const LinkAccPropList& lapl = LinkAccPropList::DEFAULT) const; - Many miscellaneous cleanup for consistent appearance Platforms tested: Linux/32 2.6 (jam) Linux/64 (platypus) Darwin (osx1010test)
Diffstat (limited to 'c++/test/ttypes.cpp')
-rw-r--r--c++/test/ttypes.cpp29
1 files changed, 6 insertions, 23 deletions
diff --git a/c++/test/ttypes.cpp b/c++/test/ttypes.cpp
index 43e85a9..a706197 100644
--- a/c++/test/ttypes.cpp
+++ b/c++/test/ttypes.cpp
@@ -22,13 +22,10 @@
#else
#include <iostream>
#endif
-#include <string>
-
-#ifndef H5_NO_STD
- using std::cerr;
- using std::endl;
-#endif // H5_NO_STD
+using std::cerr;
+using std::endl;
+#include <string>
#include "H5Cpp.h" // C++ API header file
using namespace H5;
@@ -98,8 +95,6 @@ typedef struct {
* Programmer: Binh-Minh Ribler (using C version)
* January, 2007
*
- * Modifications:
- *
*-------------------------------------------------------------------------
*/
static void test_classes()
@@ -137,8 +132,6 @@ static void test_classes()
* Programmer: Binh-Minh Ribler (using C version)
* January, 2007
*
- * Modifications:
- *
*-------------------------------------------------------------------------
*/
static void test_copy()
@@ -192,8 +185,6 @@ static void test_copy()
* Programmer: Binh-Minh Ribler (use C version)
* January, 2007
*
- * Modifications:
- *
*-------------------------------------------------------------------------
*/
@@ -312,8 +303,6 @@ static void test_query()
* Programmer: Binh-Minh Ribler (use C version)
* January, 2007
*
- * Modifications:
- *
*-------------------------------------------------------------------------
*/
const char* filename1 = "dtypes1.h5";
@@ -389,8 +378,6 @@ static void test_transient ()
* Programmer: Binh-Minh Ribler (use C version)
* January, 2007
*
- * Modifications:
- *
*-------------------------------------------------------------------------
*/
const H5std_string filename2("dtypes2.h5");
@@ -545,15 +532,13 @@ static void test_named ()
/*-------------------------------------------------------------------------
* Function: test_encode_decode
*
- * Purpose Test datatype encode/decode functionality.
+ * Purpose: Test datatype encode/decode functionality.
*
- * Return None
+ * Return: None
*
- * Programmer Binh-Minh Ribler (using C version)
+ * Programmer: Binh-Minh Ribler (using C version)
* October, 2017
*
- * Modifications:
- *
*-------------------------------------------------------------------------
*/
const H5std_string filename3("encode_decode.h5");
@@ -797,8 +782,6 @@ void test_types()
* Programmer: Quincey Koziol
* September 10, 1999
*
- * Modifications:
- *
*-------------------------------------------------------------------------
*/
extern "C"