source: XIOS/dev/dev_olga/src/interface/fortran_attr/reduce_domain_to_axis_interface_attr.F90 @ 1314

Last change on this file since 1314 was 981, checked in by mhnguyen, 8 years ago

Fortran interfaces:

+) Adding Fortran interfaces of transformation

Test
+) Only complilation on Curie

File size: 2.7 KB
Line 
1! * ************************************************************************** *
2! *               Interface auto generated - do not modify                     *
3! * ************************************************************************** *
4#include "../fortran/xios_fortran_prefix.hpp"
5
6MODULE reduce_domain_to_axis_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_reduce_domain_to_axis_direction(reduce_domain_to_axis_hdl, direction, direction_size) BIND(C)
13      USE ISO_C_BINDING
14      INTEGER (kind = C_INTPTR_T), VALUE :: reduce_domain_to_axis_hdl
15      CHARACTER(kind = C_CHAR)    , DIMENSION(*) :: direction
16      INTEGER  (kind = C_INT)     , VALUE        :: direction_size
17    END SUBROUTINE cxios_set_reduce_domain_to_axis_direction
18
19    SUBROUTINE cxios_get_reduce_domain_to_axis_direction(reduce_domain_to_axis_hdl, direction, direction_size) BIND(C)
20      USE ISO_C_BINDING
21      INTEGER (kind = C_INTPTR_T), VALUE :: reduce_domain_to_axis_hdl
22      CHARACTER(kind = C_CHAR)    , DIMENSION(*) :: direction
23      INTEGER  (kind = C_INT)     , VALUE        :: direction_size
24    END SUBROUTINE cxios_get_reduce_domain_to_axis_direction
25
26    FUNCTION cxios_is_defined_reduce_domain_to_axis_direction(reduce_domain_to_axis_hdl) BIND(C)
27      USE ISO_C_BINDING
28      LOGICAL(kind=C_BOOL) :: cxios_is_defined_reduce_domain_to_axis_direction
29      INTEGER (kind = C_INTPTR_T), VALUE :: reduce_domain_to_axis_hdl
30    END FUNCTION cxios_is_defined_reduce_domain_to_axis_direction
31
32
33    SUBROUTINE cxios_set_reduce_domain_to_axis_operation(reduce_domain_to_axis_hdl, operation, operation_size) BIND(C)
34      USE ISO_C_BINDING
35      INTEGER (kind = C_INTPTR_T), VALUE :: reduce_domain_to_axis_hdl
36      CHARACTER(kind = C_CHAR)    , DIMENSION(*) :: operation
37      INTEGER  (kind = C_INT)     , VALUE        :: operation_size
38    END SUBROUTINE cxios_set_reduce_domain_to_axis_operation
39
40    SUBROUTINE cxios_get_reduce_domain_to_axis_operation(reduce_domain_to_axis_hdl, operation, operation_size) BIND(C)
41      USE ISO_C_BINDING
42      INTEGER (kind = C_INTPTR_T), VALUE :: reduce_domain_to_axis_hdl
43      CHARACTER(kind = C_CHAR)    , DIMENSION(*) :: operation
44      INTEGER  (kind = C_INT)     , VALUE        :: operation_size
45    END SUBROUTINE cxios_get_reduce_domain_to_axis_operation
46
47    FUNCTION cxios_is_defined_reduce_domain_to_axis_operation(reduce_domain_to_axis_hdl) BIND(C)
48      USE ISO_C_BINDING
49      LOGICAL(kind=C_BOOL) :: cxios_is_defined_reduce_domain_to_axis_operation
50      INTEGER (kind = C_INTPTR_T), VALUE :: reduce_domain_to_axis_hdl
51    END FUNCTION cxios_is_defined_reduce_domain_to_axis_operation
52
53  END INTERFACE
54
55END MODULE reduce_domain_to_axis_interface_attr
Note: See TracBrowser for help on using the repository browser.