source: XIOS/trunk/src/interface/fortran_attr/interpolate_domain_interface_attr.F90 @ 793

Last change on this file since 793 was 786, checked in by mhnguyen, 9 years ago

Generating interface for transformations

+) Update Fortran interface for other transformations
+) Remove some redundant files
+) Update test to new interface

Test
+) On Curie
+) test_client and test_complete are correct

File size: 2.4 KB
Line 
1! * ************************************************************************** *
2! *               Interface auto generated - do not modify                     *
3! * ************************************************************************** *
4#include "../fortran/xios_fortran_prefix.hpp"
5
6MODULE interpolate_domain_interface_attr
7  USE, INTRINSIC :: ISO_C_BINDING
8
9  INTERFACE
10    ! Do not call directly / interface FORTRAN 2003 <-> C99
11
12    SUBROUTINE cxios_set_interpolate_domain_file(interpolate_domain_hdl, file, file_size) BIND(C)
13      USE ISO_C_BINDING
14      INTEGER (kind = C_INTPTR_T), VALUE :: interpolate_domain_hdl
15      CHARACTER(kind = C_CHAR)    , DIMENSION(*) :: file
16      INTEGER  (kind = C_INT)     , VALUE        :: file_size
17    END SUBROUTINE cxios_set_interpolate_domain_file
18
19    SUBROUTINE cxios_get_interpolate_domain_file(interpolate_domain_hdl, file, file_size) BIND(C)
20      USE ISO_C_BINDING
21      INTEGER (kind = C_INTPTR_T), VALUE :: interpolate_domain_hdl
22      CHARACTER(kind = C_CHAR)    , DIMENSION(*) :: file
23      INTEGER  (kind = C_INT)     , VALUE        :: file_size
24    END SUBROUTINE cxios_get_interpolate_domain_file
25
26    FUNCTION cxios_is_defined_interpolate_domain_file(interpolate_domain_hdl) BIND(C)
27      USE ISO_C_BINDING
28      LOGICAL(kind=C_BOOL) :: cxios_is_defined_interpolate_domain_file
29      INTEGER (kind = C_INTPTR_T), VALUE :: interpolate_domain_hdl
30    END FUNCTION cxios_is_defined_interpolate_domain_file
31
32
33    SUBROUTINE cxios_set_interpolate_domain_order(interpolate_domain_hdl, order) BIND(C)
34      USE ISO_C_BINDING
35      INTEGER (kind = C_INTPTR_T), VALUE :: interpolate_domain_hdl
36      INTEGER (KIND=C_INT)      , VALUE :: order
37    END SUBROUTINE cxios_set_interpolate_domain_order
38
39    SUBROUTINE cxios_get_interpolate_domain_order(interpolate_domain_hdl, order) BIND(C)
40      USE ISO_C_BINDING
41      INTEGER (kind = C_INTPTR_T), VALUE :: interpolate_domain_hdl
42      INTEGER (KIND=C_INT)             :: order
43    END SUBROUTINE cxios_get_interpolate_domain_order
44
45    FUNCTION cxios_is_defined_interpolate_domain_order(interpolate_domain_hdl) BIND(C)
46      USE ISO_C_BINDING
47      LOGICAL(kind=C_BOOL) :: cxios_is_defined_interpolate_domain_order
48      INTEGER (kind = C_INTPTR_T), VALUE :: interpolate_domain_hdl
49    END FUNCTION cxios_is_defined_interpolate_domain_order
50
51  END INTERFACE
52
53END MODULE interpolate_domain_interface_attr
Note: See TracBrowser for help on using the repository browser.