source: XMLIO_V2/dev/dev_rv/main.cpp @ 95

Last change on this file since 95 was 91, checked in by hozdoba, 14 years ago

Corrections de plusieurs problÚmes.

File size: 486 bytes
Line 
1#include "xmlio.hpp"
2
3using namespace XMLIOSERVER;
4using namespace XMLIOSERVER::XML;
5using namespace std;
6
7int main (void)
8{
9        try
10        {
11                XMLParser::CLASS_TEST();           
12                // Code à executer ici
13        }
14        catch(const XMLIOException &exc)
15        {  // Pour tout type d'exceptions, on note les informations sur la sortie paramétrée.
16                ERROR(exc.displayText()); 
17                // On retourne le code d'erreur en fin d'application pour traitements éventuels.
18                return (exc.code());
19        }
20     
21        return (0);
22} 
Note: See TracBrowser for help on using the repository browser.