source: XMLIO_V2/dev/dev_rv/src/xml_parser.hpp @ 141

Last change on this file since 141 was 141, checked in by hozdoba, 13 years ago

Mise à jour depuis un autre dépôt

File size: 639 bytes
Line 
1#ifndef __XMLIO_CXMLParser__
2#define __XMLIO_CXMLParser__
3
4/// xmlioserver headers ///
5#include "xmlioserver_spl.hpp"
6#include "xml_node.hpp"
7#include "node/context.hpp"
8
9namespace xmlioserver
10{
11   namespace xml
12   {
13      /// ////////////////////// Déclarations ////////////////////// ///
14      class CXMLParser
15      {
16         public :
17
18            static void ParseFile(const StdString & filename);
19            static void ParseString(const StdString & xmlContent);
20            static void ParseStream(StdIStream & stream);
21
22      }; //class CXMLParser
23
24   }// namespace xml
25} // namespace xmlioserver
26
27#endif // __XMLIO_CXMLParser__
Note: See TracBrowser for help on using the repository browser.