OOPS
Fortran.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2020 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  */
8 
9 #ifndef TEST_BASE_FORTRAN_H_
10 #define TEST_BASE_FORTRAN_H_
11 
12 #include <cstdint>
13 #include <string>
14 #include <vector>
15 #include "eckit/config/Configuration.h"
16 
17 namespace test {
18 
19 // -----------------------------------------------------------------------------
20 /*! This is intended as a general interface for testing objects in the **util**
21  * namespace from Fortran
22  */
23 // -----------------------------------------------------------------------------
24 
25 extern "C" {
26 
27  void test_vars_interface_f(const eckit::Configuration &, oops::Variables &);
28 
29 }
30 
31 #endif // TEST_BASE_FORTRAN_H_
32 
33 } // namespace test
void test_vars_interface_f(const eckit::Configuration &, oops::Variables &)
This is intended as a general interface for testing objects in the util namespace from Fortran.