This commit is contained in:
2009-04-16 15:22:50 +00:00
parent 90b075b911
commit 533f2d083b
2 changed files with 20 additions and 0 deletions
+1
View File
@@ -364,6 +364,7 @@ src/H5Fed_store.h -text
src/H5Part.c -text
src/H5Part.h -text
src/H5_inquiry.c -text
src/H5_inquiry.h -text
src/Makefile.am -text
src/bindings/C++/H5Fed.cc -text
src/bindings/C++/H5Fed.hh -text
+19
View File
@@ -0,0 +1,19 @@
#ifndef __H5_INQUIRY_H
#define __H5_INQUIRY_H
h5_size_t
H5GetNumNodes (
h5_file_t * const f
);
h5_size_t
H5GetNumSteps (
h5_file_t * const f
);
h5_err_t
H5HasStep (
h5_file_t * const f,
h5_id_t step
);
#endif