source: XIOS/dev/dev_olga/src/interface/fortran_attr/variablegroup_interface_attr.F90 @ 1158

Last change on this file since 1158 was 1158, checked in by oabramkina, 7 years ago

Two server levels: merging with trunk r1137.
There are bugs.

  • Property copyright set to
    Software name : XIOS (Xml I/O Server)
    http://forge.ipsl.jussieu.fr/ioserver
    Creation date : January 2009
    Licence : CeCCIL version2
    see license file in root directory : Licence_CeCILL_V2-en.txt
    or http://www.cecill.info/licences/Licence_CeCILL_V2-en.html
    Holder : CEA/LSCE (Laboratoire des Sciences du CLimat et de l'Environnement)
    CNRS/IPSL (Institut Pierre Simon Laplace)
    Project Manager : Yann Meurdesoif
    yann.meurdesoif@cea.fr
File size: 4.4 KB
Line 
1! * ************************************************************************** *
2! *               Interface auto generated - do not modify                     *
3! * ************************************************************************** *
4#include "../fortran/xios_fortran_prefix.hpp"
5
6MODULE variablegroup_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_variablegroup_group_ref(variablegroup_hdl, group_ref, group_ref_size) BIND(C)
13      USE ISO_C_BINDING
14      INTEGER (kind = C_INTPTR_T), VALUE :: variablegroup_hdl
15      CHARACTER(kind = C_CHAR)    , DIMENSION(*) :: group_ref
16      INTEGER  (kind = C_INT)     , VALUE        :: group_ref_size
17    END SUBROUTINE cxios_set_variablegroup_group_ref
18
19    SUBROUTINE cxios_get_variablegroup_group_ref(variablegroup_hdl, group_ref, group_ref_size) BIND(C)
20      USE ISO_C_BINDING
21      INTEGER (kind = C_INTPTR_T), VALUE :: variablegroup_hdl
22      CHARACTER(kind = C_CHAR)    , DIMENSION(*) :: group_ref
23      INTEGER  (kind = C_INT)     , VALUE        :: group_ref_size
24    END SUBROUTINE cxios_get_variablegroup_group_ref
25
26    FUNCTION cxios_is_defined_variablegroup_group_ref(variablegroup_hdl) BIND(C)
27      USE ISO_C_BINDING
28      LOGICAL(kind=C_BOOL) :: cxios_is_defined_variablegroup_group_ref
29      INTEGER (kind = C_INTPTR_T), VALUE :: variablegroup_hdl
30    END FUNCTION cxios_is_defined_variablegroup_group_ref
31
32
33    SUBROUTINE cxios_set_variablegroup_name(variablegroup_hdl, name, name_size) BIND(C)
34      USE ISO_C_BINDING
35      INTEGER (kind = C_INTPTR_T), VALUE :: variablegroup_hdl
36      CHARACTER(kind = C_CHAR)    , DIMENSION(*) :: name
37      INTEGER  (kind = C_INT)     , VALUE        :: name_size
38    END SUBROUTINE cxios_set_variablegroup_name
39
40    SUBROUTINE cxios_get_variablegroup_name(variablegroup_hdl, name, name_size) BIND(C)
41      USE ISO_C_BINDING
42      INTEGER (kind = C_INTPTR_T), VALUE :: variablegroup_hdl
43      CHARACTER(kind = C_CHAR)    , DIMENSION(*) :: name
44      INTEGER  (kind = C_INT)     , VALUE        :: name_size
45    END SUBROUTINE cxios_get_variablegroup_name
46
47    FUNCTION cxios_is_defined_variablegroup_name(variablegroup_hdl) BIND(C)
48      USE ISO_C_BINDING
49      LOGICAL(kind=C_BOOL) :: cxios_is_defined_variablegroup_name
50      INTEGER (kind = C_INTPTR_T), VALUE :: variablegroup_hdl
51    END FUNCTION cxios_is_defined_variablegroup_name
52
53
54    SUBROUTINE cxios_set_variablegroup_ts_target(variablegroup_hdl, ts_target, ts_target_size) BIND(C)
55      USE ISO_C_BINDING
56      INTEGER (kind = C_INTPTR_T), VALUE :: variablegroup_hdl
57      CHARACTER(kind = C_CHAR)    , DIMENSION(*) :: ts_target
58      INTEGER  (kind = C_INT)     , VALUE        :: ts_target_size
59    END SUBROUTINE cxios_set_variablegroup_ts_target
60
61    SUBROUTINE cxios_get_variablegroup_ts_target(variablegroup_hdl, ts_target, ts_target_size) BIND(C)
62      USE ISO_C_BINDING
63      INTEGER (kind = C_INTPTR_T), VALUE :: variablegroup_hdl
64      CHARACTER(kind = C_CHAR)    , DIMENSION(*) :: ts_target
65      INTEGER  (kind = C_INT)     , VALUE        :: ts_target_size
66    END SUBROUTINE cxios_get_variablegroup_ts_target
67
68    FUNCTION cxios_is_defined_variablegroup_ts_target(variablegroup_hdl) BIND(C)
69      USE ISO_C_BINDING
70      LOGICAL(kind=C_BOOL) :: cxios_is_defined_variablegroup_ts_target
71      INTEGER (kind = C_INTPTR_T), VALUE :: variablegroup_hdl
72    END FUNCTION cxios_is_defined_variablegroup_ts_target
73
74
75    SUBROUTINE cxios_set_variablegroup_type(variablegroup_hdl, type, type_size) BIND(C)
76      USE ISO_C_BINDING
77      INTEGER (kind = C_INTPTR_T), VALUE :: variablegroup_hdl
78      CHARACTER(kind = C_CHAR)    , DIMENSION(*) :: type
79      INTEGER  (kind = C_INT)     , VALUE        :: type_size
80    END SUBROUTINE cxios_set_variablegroup_type
81
82    SUBROUTINE cxios_get_variablegroup_type(variablegroup_hdl, type, type_size) BIND(C)
83      USE ISO_C_BINDING
84      INTEGER (kind = C_INTPTR_T), VALUE :: variablegroup_hdl
85      CHARACTER(kind = C_CHAR)    , DIMENSION(*) :: type
86      INTEGER  (kind = C_INT)     , VALUE        :: type_size
87    END SUBROUTINE cxios_get_variablegroup_type
88
89    FUNCTION cxios_is_defined_variablegroup_type(variablegroup_hdl) BIND(C)
90      USE ISO_C_BINDING
91      LOGICAL(kind=C_BOOL) :: cxios_is_defined_variablegroup_type
92      INTEGER (kind = C_INTPTR_T), VALUE :: variablegroup_hdl
93    END FUNCTION cxios_is_defined_variablegroup_type
94
95  END INTERFACE
96
97END MODULE variablegroup_interface_attr
Note: See TracBrowser for help on using the repository browser.