XMLIOSERVER 0.4
Serveur d'Entrées/Sorties parallèles
|
00001 /* ************************************************************************** * 00002 * Copyright © IPSL/LSCE, XMLIOServer, Avril 2010 - Octobre 2011 * 00003 * ************************************************************************** */ 00015 // XMLIOServer headers 00016 #include "xmlioserver_spl.hpp" 00017 00018 namespace xios = xmlioserver; 00019 //~ using namespace xios::data; 00020 //~ using namespace xios::io; 00021 //~ using namespace xios::tree; 00022 //~ using namespace xios::xml; 00023 //~ using namespace xios::comm; 00024 //~ using namespace xios::func; 00025 00026 // Point d'entrée du programme serveur principal. 00027 int main (int XIOS_UNUSED (argc), char ** XIOS_UNUSED (argv), char ** XIOS_UNUSED (env)) 00028 { 00029 try 00030 { 00031 00032 } 00033 catch (xios::CException & _exception) 00034 { 00035 std::cerr << _exception.getMessage() << std::endl; 00036 return (-1); 00037 } 00038 return (0); 00039 } 00040 00041