source: XMLIO_V2/dev/dev_rv/src4/xmlio/main_server.cpp @ 242

Last change on this file since 242 was 242, checked in by hozdoba, 13 years ago

Ajout d'une partie d'Interface fortran pour la version 4

File size: 1.2 KB
Line 
1/* ************************************************************************** *
2 *      Copyright © IPSL/LSCE, XMLIOServer, Avril 2010 - Octobre 2011         *
3 * ************************************************************************** */
4/**
5 * \file    main_server.cpp
6 * \brief   Programme principal du projet.
7 * \author  Hervé Ozdoba
8 * \version 0.4
9 * \date    1er Juin 2011
10 *
11 * Ce fichier contient le point d'entrée du programme permettant
12 * de lancer le serveur d'Entrée/Sortie parallÚle.
13 */
14
15// XMLIOServer headers
16#include "xmlioserver_spl.hpp"
17
18#include "inetcdf4.hpp"
19#include "inetcdf4_impl.hpp"
20#include "inetcdf4_adv.hpp"
21#include "inetcdf4_adv_impl.hpp"
22#include "lscereader.hpp"
23
24namespace xios = xmlioserver;
25//~ using namespace xios::data;
26using namespace xios::io;
27//~ using namespace xios::tree;
28//~ using namespace xios::xml;
29//~ using namespace xios::comm;
30//~ using namespace xios::func;
31using namespace xios::vtk;
32
33// Point d'entrée du programme serveur principal.
34int main (int XIOS_UNUSED (argc), char ** XIOS_UNUSED (argv), char ** XIOS_UNUSED (env))
35{
36   try
37   {
38
39
40
41   }
42   catch (xios::CException & _exception)
43   {
44      std::cerr << _exception.getMessage() << std::endl;
45      return (-1);
46   }
47   return (0);
48}
49
50
Note: See TracBrowser for help on using the repository browser.