source: XMLIO_V2/dev/common/src/xmlio/xml_parser.hpp @ 219

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

Préparation nouvelle arborescence

File size: 634 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 "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.