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

Last change on this file since 215 was 215, checked in by hozdoba, 13 years ago
File size: 1.1 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
18namespace xios = xmlioserver;
19//~ using namespace xios::data;
20//~ using namespace xios::io;
21//~ using namespace xios::tree;
22//~ using namespace xios::xml;
23//~ using namespace xios::comm;
24//~ using namespace xios::func;
25
26// Point d'entrée du programme serveur principal.
27int main (int XIOS_UNUSED (argc), char ** XIOS_UNUSED (argv), char ** XIOS_UNUSED (env))
28{
29   try
30   {
31
32   }
33   catch (xios::CException & _exception)
34   {
35      std::cerr << _exception.getMessage() << std::endl;
36      return (-1);
37   }
38   return (0);
39}
40
41
Note: See TracBrowser for help on using the repository browser.