source: XIOS/trunk/src/interface/fortran_attr/reduce_domain_to_scalar_interface_attr.F90 @ 1626

Last change on this file since 1626 was 1492, checked in by oabramkina, 6 years ago

Updating fortran interface for attributes that have been recently introduced and the following filters:

duplicate_scalar_to_axis
reduce_axis_to_axis
reduce_scalar_to_scalar
reorder_domain
temporal_splitting.

File size: 2.6 KB
Line 
1! * ************************************************************************** *
2! *               Interface auto generated - do not modify                     *
3! * ************************************************************************** *
4#include "../fortran/xios_fortran_prefix.hpp"
5
6MODULE reduce_domain_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_reduce_domain_to_scalar_local(reduce_domain_to_scalar_hdl, local) BIND(C)
13      USE ISO_C_BINDING
14      INTEGER (kind = C_INTPTR_T), VALUE :: reduce_domain_to_scalar_hdl
15      LOGICAL (KIND=C_BOOL)      , VALUE :: local
16    END SUBROUTINE cxios_set_reduce_domain_to_scalar_local
17
18    SUBROUTINE cxios_get_reduce_domain_to_scalar_local(reduce_domain_to_scalar_hdl, local) BIND(C)
19      USE ISO_C_BINDING
20      INTEGER (kind = C_INTPTR_T), VALUE :: reduce_domain_to_scalar_hdl
21      LOGICAL (KIND=C_BOOL)             :: local
22    END SUBROUTINE cxios_get_reduce_domain_to_scalar_local
23
24    FUNCTION cxios_is_defined_reduce_domain_to_scalar_local(reduce_domain_to_scalar_hdl) BIND(C)
25      USE ISO_C_BINDING
26      LOGICAL(kind=C_BOOL) :: cxios_is_defined_reduce_domain_to_scalar_local
27      INTEGER (kind = C_INTPTR_T), VALUE :: reduce_domain_to_scalar_hdl
28    END FUNCTION cxios_is_defined_reduce_domain_to_scalar_local
29
30
31    SUBROUTINE cxios_set_reduce_domain_to_scalar_operation(reduce_domain_to_scalar_hdl, operation, operation_size) BIND(C)
32      USE ISO_C_BINDING
33      INTEGER (kind = C_INTPTR_T), VALUE :: reduce_domain_to_scalar_hdl
34      CHARACTER(kind = C_CHAR)    , DIMENSION(*) :: operation
35      INTEGER  (kind = C_INT)     , VALUE        :: operation_size
36    END SUBROUTINE cxios_set_reduce_domain_to_scalar_operation
37
38    SUBROUTINE cxios_get_reduce_domain_to_scalar_operation(reduce_domain_to_scalar_hdl, operation, operation_size) BIND(C)
39      USE ISO_C_BINDING
40      INTEGER (kind = C_INTPTR_T), VALUE :: reduce_domain_to_scalar_hdl
41      CHARACTER(kind = C_CHAR)    , DIMENSION(*) :: operation
42      INTEGER  (kind = C_INT)     , VALUE        :: operation_size
43    END SUBROUTINE cxios_get_reduce_domain_to_scalar_operation
44
45    FUNCTION cxios_is_defined_reduce_domain_to_scalar_operation(reduce_domain_to_scalar_hdl) BIND(C)
46      USE ISO_C_BINDING
47      LOGICAL(kind=C_BOOL) :: cxios_is_defined_reduce_domain_to_scalar_operation
48      INTEGER (kind = C_INTPTR_T), VALUE :: reduce_domain_to_scalar_hdl
49    END FUNCTION cxios_is_defined_reduce_domain_to_scalar_operation
50
51  END INTERFACE
52
53END MODULE reduce_domain_to_scalar_interface_attr
Note: See TracBrowser for help on using the repository browser.