OOPS
variables_interface.f
Go to the documentation of this file.
1 !
2 ! (C) Copyright 2019 UCAR
3 !
4 ! This software is licensed under the terms of the Apache Licence Version 2.0
5 ! which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6 
7 !> Define interface for C++ Variables code called from Fortran
8 
9 !-------------------------------------------------------------------------------
10 interface
11 !-------------------------------------------------------------------------------
12 
13 type(c_ptr) function c_variables_empty_ctor() bind(c, name='variables_empty_ctor_f')
14  use, intrinsic :: iso_c_binding
15  implicit none
16 end function c_variables_empty_ctor
17 
18 !-------------------------------------------------------------------------------
19 
20 subroutine c_variables_destruct(vars) bind(C, name='variables_destruct_f')
21  use, intrinsic :: iso_c_binding
22  implicit none
23 
24  type(c_ptr), value :: vars
25 end subroutine c_variables_destruct
26 
27 !-------------------------------------------------------------------------------
28 
29 subroutine c_variables_push_back(vars, str) bind(C, name='variables_push_back_f')
30  use, intrinsic :: iso_c_binding
31  implicit none
32 
33  type(c_ptr), value :: vars
34  character(kind=c_char,len=1), intent(in) :: str(*)
35 end subroutine c_variables_push_back
36 
37 !-------------------------------------------------------------------------------
38 
39 integer(kind=c_size_t) function c_variables_size(vars) bind(C,name='variables_size_f')
40  use, intrinsic :: iso_c_binding
41  implicit none
42 
43  type(c_ptr), value :: vars
44 end function c_variables_size
45 
46 !-------------------------------------------------------------------------------
47 
48 subroutine c_variables_getvariablelength(vars, jj, lcname) bind (C,name='variables_getvariablelength_f')
49  use, intrinsic :: iso_c_binding
50  implicit none
51  type(c_ptr), value :: vars
52  integer(c_size_t),intent(in) :: jj
53  integer(c_size_t),intent(inout) :: lcname
54 end subroutine c_variables_getvariablelength
55 
56 !-------------------------------------------------------------------------------
57 
58 subroutine c_variables_getvariable(vars, jj, lcname, lfname, cname) bind (C,name='variables_getvariable_f')
59  use, intrinsic :: iso_c_binding
60  implicit none
61  type(c_ptr), value :: vars
62  integer(c_size_t),intent(in) :: jj
63  integer(c_size_t),intent(inout) :: lcname
64  integer(c_size_t),intent(in) :: lfname
65  character(kind=c_char,len=1), intent(inout) :: cname(*)
66 end subroutine c_variables_getvariable
67 
68 !-------------------------------------------------------------------------------
69 
70 logical*1 function c_variables_has(vars, str) bind(C, name='variables_has_f')
71  use, intrinsic :: iso_c_binding
72  implicit none
73 
74  type(c_ptr), value :: vars
75  character(kind=c_char,len=1), intent(in) :: str(*)
76 end function c_variables_has
77 
78 !-------------------------------------------------------------------------------
79 end interface
80 !-------------------------------------------------------------------------------
81 
Define interface for C++ Variables code called from Fortran.