source: XIOS/dev/branch_yushan_merged/src/interface/fortran_attr/extract_axis_to_scalar_interface_attr.F90 @ 1205

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

Fortran interfaces:

+) Adding Fortran interfaces of transformation

Test
+) Only complilation on Curie

File size: 1.4 KB
Line 
1! * ************************************************************************** *
2! *               Interface auto generated - do not modify                     *
3! * ************************************************************************** *
4#include "../fortran/xios_fortran_prefix.hpp"
5
6MODULE extract_axis_to_scalar_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_axis_to_scalar_position(extract_axis_to_scalar_hdl, position) BIND(C)
13      USE ISO_C_BINDING
14      INTEGER (kind = C_INTPTR_T), VALUE :: extract_axis_to_scalar_hdl
15      INTEGER (KIND=C_INT)      , VALUE :: position
16    END SUBROUTINE cxios_set_extract_axis_to_scalar_position
17
18    SUBROUTINE cxios_get_extract_axis_to_scalar_position(extract_axis_to_scalar_hdl, position) BIND(C)
19      USE ISO_C_BINDING
20      INTEGER (kind = C_INTPTR_T), VALUE :: extract_axis_to_scalar_hdl
21      INTEGER (KIND=C_INT)             :: position
22    END SUBROUTINE cxios_get_extract_axis_to_scalar_position
23
24    FUNCTION cxios_is_defined_extract_axis_to_scalar_position(extract_axis_to_scalar_hdl) BIND(C)
25      USE ISO_C_BINDING
26      LOGICAL(kind=C_BOOL) :: cxios_is_defined_extract_axis_to_scalar_position
27      INTEGER (kind = C_INTPTR_T), VALUE :: extract_axis_to_scalar_hdl
28    END FUNCTION cxios_is_defined_extract_axis_to_scalar_position
29
30  END INTERFACE
31
32END MODULE extract_axis_to_scalar_interface_attr
Note: See TracBrowser for help on using the repository browser.