2016-02-20 03:09:34 +08:00
|
|
|
!****h* ROBODoc/THDF5
|
2014-04-06 23:56:21 +08:00
|
|
|
!
|
|
|
|
! NAME
|
|
|
|
! MODULE THDF5
|
|
|
|
!
|
|
|
|
! FILE
|
|
|
|
! src/fortran/test/tHDF5.f90
|
|
|
|
!
|
|
|
|
! PURPOSE
|
2022-04-20 02:05:54 +08:00
|
|
|
! This is the test module used for testing the Fortran90 HDF library APIs.
|
2014-04-06 23:56:21 +08:00
|
|
|
!
|
|
|
|
! COPYRIGHT
|
|
|
|
! * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
|
|
! Copyright by The HDF Group. *
|
|
|
|
! All rights reserved. *
|
|
|
|
! *
|
|
|
|
! This file is part of HDF5. The full HDF5 copyright notice, including *
|
|
|
|
! terms governing use, modification, and redistribution, is contained in *
|
2017-04-18 03:32:16 +08:00
|
|
|
! the COPYING file, which can be found at the root of the source code *
|
2021-02-17 22:52:36 +08:00
|
|
|
! distribution tree, or in https://www.hdfgroup.org/licenses. *
|
2017-04-18 03:32:16 +08:00
|
|
|
! If you do not have access to either file, you may request a copy from *
|
|
|
|
! help@hdfgroup.org. *
|
2014-04-06 23:56:21 +08:00
|
|
|
! * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
|
|
!
|
|
|
|
!*****
|
|
|
|
|
|
|
|
MODULE THDF5
|
|
|
|
USE TH5_MISC
|
2015-08-11 22:35:30 +08:00
|
|
|
USE TH5_MISC_GEN
|
2014-04-06 23:56:21 +08:00
|
|
|
USE TH5A
|
|
|
|
USE TH5D
|
|
|
|
USE TH5E
|
|
|
|
USE TH5F
|
|
|
|
USE TH5G
|
|
|
|
USE TH5I
|
|
|
|
USE TH5P
|
|
|
|
USE TH5R
|
|
|
|
USE TH5S
|
|
|
|
USE TH5SSELECT
|
|
|
|
USE TH5T
|
|
|
|
USE TH5VL
|
|
|
|
USE TH5Z
|
|
|
|
END MODULE THDF5
|