SOCA
ModelFortran.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2017-2021 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 #ifndef SOCA_MODEL_MODELFORTRAN_H_
9 #define SOCA_MODEL_MODELFORTRAN_H_
10 
11 #include "soca/Fortran.h"
12 
13 // Forward declarations
14 namespace eckit {
15  class Configuration;
16 }
17 
18 namespace soca {
19 
20  extern "C" {
21  void soca_model_setup_f90(const eckit::Configuration * const *,
22  const F90geom &, F90model &);
24  void soca_model_init_f90(const F90model &, const F90flds &);
25  void soca_model_finalize_f90(const F90model &, const F90flds &);
26  void soca_model_propagate_f90(const F90model &, const F90flds &,
27  util::DateTime * const *);
28  }
29 } // namespace soca
30 
31 #endif // SOCA_MODEL_MODELFORTRAN_H_
int F90geom
key type for soca_geom_mod::soca_geom
Definition: Fortran.h:14
void soca_model_init_f90(const F90model &, const F90flds &)
void soca_model_setup_f90(const eckit::Configuration *const *, const F90geom &, F90model &)
void soca_model_finalize_f90(const F90model &, const F90flds &)
void soca_model_delete_f90(F90model &)
void soca_model_propagate_f90(const F90model &, const F90flds &, util::DateTime *const *)
int F90model
key type for soca_model_mod::soca_model
Definition: Fortran.h:20
int F90flds
key type for soca_fields_mod::soca_fields
Definition: Fortran.h:26