source: XIOS/dev/dev_olga/src/interface/fortran_attr/extract_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.6 KB
Line 
1! * ************************************************************************** *
2! *               Interface auto generated - do not modify                     *
3! * ************************************************************************** *
4#include "../fortran/xios_fortran_prefix.hpp"
5
6MODULE extract_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_extract_domain_to_axis_direction(extract_domain_to_axis_hdl, direction, direction_size) BIND(C)
13      USE ISO_C_BINDING
14      INTEGER (kind = C_INTPTR_T), VALUE :: extract_domain_to_axis_hdl
15      CHARACTER(kind = C_CHAR)    , DIMENSION(*) :: direction
16      INTEGER  (kind = C_INT)     , VALUE        :: direction_size
17    END SUBROUTINE cxios_set_extract_domain_to_axis_direction
18
19    SUBROUTINE cxios_get_extract_domain_to_axis_direction(extract_domain_to_axis_hdl, direction, direction_size) BIND(C)
20      USE ISO_C_BINDING
21      INTEGER (kind = C_INTPTR_T), VALUE :: extract_domain_to_axis_hdl
22      CHARACTER(kind = C_CHAR)    , DIMENSION(*) :: direction
23      INTEGER  (kind = C_INT)     , VALUE        :: direction_size
24    END SUBROUTINE cxios_get_extract_domain_to_axis_direction
25
26    FUNCTION cxios_is_defined_extract_domain_to_axis_direction(extract_domain_to_axis_hdl) BIND(C)
27      USE ISO_C_BINDING
28      LOGICAL(kind=C_BOOL) :: cxios_is_defined_extract_domain_to_axis_direction
29      INTEGER (kind = C_INTPTR_T), VALUE :: extract_domain_to_axis_hdl
30    END FUNCTION cxios_is_defined_extract_domain_to_axis_direction
31
32
33    SUBROUTINE cxios_set_extract_domain_to_axis_position(extract_domain_to_axis_hdl, position) BIND(C)
34      USE ISO_C_BINDING
35      INTEGER (kind = C_INTPTR_T), VALUE :: extract_domain_to_axis_hdl
36      INTEGER (KIND=C_INT)      , VALUE :: position
37    END SUBROUTINE cxios_set_extract_domain_to_axis_position
38
39    SUBROUTINE cxios_get_extract_domain_to_axis_position(extract_domain_to_axis_hdl, position) BIND(C)
40      USE ISO_C_BINDING
41      INTEGER (kind = C_INTPTR_T), VALUE :: extract_domain_to_axis_hdl
42      INTEGER (KIND=C_INT)             :: position
43    END SUBROUTINE cxios_get_extract_domain_to_axis_position
44
45    FUNCTION cxios_is_defined_extract_domain_to_axis_position(extract_domain_to_axis_hdl) BIND(C)
46      USE ISO_C_BINDING
47      LOGICAL(kind=C_BOOL) :: cxios_is_defined_extract_domain_to_axis_position
48      INTEGER (kind = C_INTPTR_T), VALUE :: extract_domain_to_axis_hdl
49    END FUNCTION cxios_is_defined_extract_domain_to_axis_position
50
51  END INTERFACE
52
53END MODULE extract_domain_to_axis_interface_attr
Note: See TracBrowser for help on using the repository browser.