summaryrefslogtreecommitdiffstats
path: root/fortran/examples/fileexample.f90
diff options
context:
space:
mode:
authorElena Pourmal <epourmal@hdfgroup.org>2000-11-03 19:49:59 (GMT)
committerElena Pourmal <epourmal@hdfgroup.org>2000-11-03 19:49:59 (GMT)
commitada3710bc71fc8781a69cb0d87718dc608a9e553 (patch)
tree3f98829b376de309c1946db497359f72a15e2389 /fortran/examples/fileexample.f90
parent39e47fe74d4991ea478ab579387c1860c4f503f1 (diff)
downloadhdf5-ada3710bc71fc8781a69cb0d87718dc608a9e553.zip
hdf5-ada3710bc71fc8781a69cb0d87718dc608a9e553.tar.gz
hdf5-ada3710bc71fc8781a69cb0d87718dc608a9e553.tar.bz2
[svn-r2797]
Purpose: Maintenance Description: Updated examples to use new F90 programming model Platforms tested: O2K and Solaris2.7
Diffstat (limited to 'fortran/examples/fileexample.f90')
-rw-r--r--fortran/examples/fileexample.f9011
1 files changed, 9 insertions, 2 deletions
diff --git a/fortran/examples/fileexample.f90 b/fortran/examples/fileexample.f90
index 33c3bc2..23ba664 100644
--- a/fortran/examples/fileexample.f90
+++ b/fortran/examples/fileexample.f90
@@ -13,7 +13,11 @@
INTEGER(HID_T) :: file_id ! File identifier
INTEGER :: error ! Error flag
-
+
+!
+! Initialize FORTRAN interface.
+!
+ CALL h5init_fortran_f (error)
!
! Create a new file using default properties.
!
@@ -23,5 +27,8 @@
! Terminate access to the file.
!
CALL h5fclose_f(file_id, error)
-
+!
+! Close FORTRAN interface.
+!
+ CALL h5close_fortran_f(error)
END PROGRAM FILEEXAMPLE