hdf5/tools/h5dump.h
Patrick Lu fb53598b36 [svn-r2011] added new structure to h5tools.h that is used to customize the output for
the header information in the dumper. the header is the part before the data
block.

in h5dump.c there is support for the new -xml option.  prints the output in xml
using the structure we just defined in h5tools.h.

h5dump.h- changed the begin_obj and end_obj macros. take an extra parameter now
2000-03-09 12:53:48 -05:00

17 lines
285 B
C

#ifndef _H5DUMP_H
#define _H5DUMP_H
#include <hdf5.h>
#define H5DUMP_MAX_RANK H5S_MAX_RANK
#define begin_obj(obj,name, begin) if (name) printf("%s \"%s\" %s\n", obj, name, begin); else printf("%s %s\n",obj,begin);
#define end_obj(obj, end) printf("%s %s\n", end,obj);
#endif