source: XMLIO_V2/dev/dev_rv/src/XMLIO/main_cpp.cpp @ 102

Last change on this file since 102 was 98, checked in by ymipsl, 14 years ago
  • Property svn:eol-style set to native
File size: 527 bytes
Line 
1#include "xmlio.hpp"
2
3using namespace XMLIOSERVER;
4using namespace XMLIOSERVER::XML;
5using namespace std;
6
7extern "C" void main_c_(void) ;
8
9void main_c_ (void)
10{
11        try
12        {
13                XMLParser::CLASS_TEST();           
14                // Code à executer ici
15        }
16        catch(const XMLIOException &exc)
17        {  // Pour tout type d'exceptions, on note les informations sur la sortie paramétrée.
18                ERROR(exc.displayText()); 
19                // On retourne le code d'erreur en fin d'application pour traitements éventuels.
20//              return (exc.code());
21        }
22     
23//      return (0);
24} 
Note: See TracBrowser for help on using the repository browser.