Last change
on this file since 98 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 | |
---|
3 | using namespace XMLIOSERVER; |
---|
4 | using namespace XMLIOSERVER::XML; |
---|
5 | using namespace std; |
---|
6 | |
---|
7 | extern "C" void main_c_(void) ; |
---|
8 | |
---|
9 | void 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.