diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2003-06-09 17:42:02 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2003-06-09 17:42:02 (GMT) |
commit | 01f726e30521c16f8252c0668f796a9c8aac7a62 (patch) | |
tree | d1f1c9bf1fc548dfd21be5c15edbd81580314b1a /c++/test/h5cpputil.h | |
parent | 47f9421dd546b7bc1e1616d3beb6e288ac0e637c (diff) | |
download | hdf5-01f726e30521c16f8252c0668f796a9c8aac7a62.zip hdf5-01f726e30521c16f8252c0668f796a9c8aac7a62.tar.gz hdf5-01f726e30521c16f8252c0668f796a9c8aac7a62.tar.bz2 |
[svn-r6997]
Purpose:
Code cleanup
Description:
Moved a utility function out so other tests can use the same
function and avoid code duplication. Future utility functions
can also benefit from this move.
Platforms tested:
SunOS 5.7 (arabica)
Linux 2.4 (eirene)
IRIX 6.5.11 (modi4)
HPUX 11.00 (kelgia)
Diffstat (limited to 'c++/test/h5cpputil.h')
-rw-r--r-- | c++/test/h5cpputil.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/c++/test/h5cpputil.h b/c++/test/h5cpputil.h new file mode 100644 index 0000000..b3d7a1b --- /dev/null +++ b/c++/test/h5cpputil.h @@ -0,0 +1,32 @@ +/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * + * Copyright by the Board of Trustees of the University of Illinois. * + * All rights reserved. * + * * + * This file is part of HDF5. The full HDF5 copyright notice, including * + * terms governing use, modification, and redistribution, is contained in * + * the files COPYING and Copyright.html. COPYING can be found at the root * + * of the source code distribution tree; Copyright.html can be found at the * + * root level of an installed copy of the electronic HDF5 document set and * + * is linked from the top-level documents page. It can also be found at * + * http://hdf.ncsa.uiuc.edu/HDF5/doc/Copyright.html. If you do not have * + * access to either file, you may request a copy from hdfhelp@ncsa.uiuc.edu. * + * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ + +/***************************************************************************** + FILE + h5cpputil.h - Header file of the utilities/misc for HDF5 C++ tests. + + EXTERNAL ROUTINES/VARIABLES: + + ***************************************************************************/ + +#ifndef _h5cpputil_h +#define _h5cpputil_h + +#ifndef H5_NO_STD +int test_report (int, const std::string&); +#else +int test_report (int, const string&); +#endif + +#endif |