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

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

Ajout de classes pour la version 4

File size: 1.3 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 "mpi_interface.hpp"
19//~ #include "onetcdf4.hpp"
20//~ #include "onetcdf4_impl.hpp"
21#include "array_util.hpp"
22#include "array_util_impl.hpp"
23
24namespace xios = xmlioserver;
25//~ using namespace xios::data;
26//~ using namespace xios::io;
27//~ using namespace xios::tree;
28//~ using namespace xios::xml;
29using namespace xios::comm;
30//~ using namespace xios::func;
31
32// Point d'entrée du programme serveur principal.
33int main (int argc, char ** argv, char ** XIOS_UNUSED (env))
34{
35   try
36   {
37      CMPIManager::Initialise(&argc, &argv);
38      {
39
40      }
41      CMPIManager::Finalize();
42   }
43   catch (xios::CException & _exception)
44   {
45      std::cerr << _exception.getMessage() << std::endl;
46      return (-1);
47   }
48   return (0);
49}
50
51
Note: See TracBrowser for help on using the repository browser.