source: XMLIO_V2/dev/common/src/xmlio/fortran/oasis_cinterface.hpp @ 286

Last change on this file since 286 was 286, checked in by ymipsl, 13 years ago

reprise en main de la version de H. Ozdoba. Correction de différentes erreurs de conception et bug.
Version NEMO operationnel en client/server, interoperabilita avec OASIS, reconstition de fichiers via netcdf4/HDF5

YM

File size: 511 bytes
Line 
1#ifndef __OASIS_CINTERFACE__
2#define __OASIS_CINTERFACE__
3#include <string>
4#include <mpi.h>
5
6extern "C"
7{
8
9  void fxios_oasis_init(const char* server_id,int str_len) ;
10  void fxios_oasis_finalize(void) ;
11  void fxios_oasis_get_intracomm(MPI_Fint* f_comm_client_server,const char* client_id,int str_len) ;
12}
13 
14namespace xmlioserver
15{
16  void oasis_init(const std::string& server_id) ;
17  void oasis_finalize(void) ;
18  void oasis_get_intracomm(MPI_Comm& comm_client_server,const std::string& server_id) ;
19}
20#endif
Note: See TracBrowser for help on using the repository browser.