source: XIOS/dev/dev_rv/src4/xmlio/xml/xml_parser.cpp @ 2348

Last change on this file since 2348 was 215, checked in by hozdoba, 13 years ago
File size: 1.2 KB
Line 
1/* ************************************************************************** *
2 *      Copyright © IPSL/LSCE, XMLIOServer, Avril 2010 - Octobre 2011         *
3 * ************************************************************************** */
4
5/**
6 * \file    xml_parser.cpp
7 * \brief   Définition des méthodes d'initialisation du parsing xml (implémentation).
8 * \author  Hervé Ozdoba
9 * \version 0.4
10 * \date    12 Juin 2011
11 */
12
13// XMLIOServer headers
14#include "xmlioserver_spl.hpp"
15#include "xml_parser.hpp"
16
17// /////////////////////////////// Définitions ////////////////////////////// //
18
19namespace xmlioserver {
20namespace xml {
21
22   // ------------------------- Méthodes statiques -----------------------------
23
24   // Parse un document xml à partir d'un nom de fichier.
25   void CXMLParser::ParseFile(const std::string & _filename)
26   {
27
28   }
29
30   // Parse un document xml à partir d'une chaîne de caractÚres.
31   void CXMLParser::ParseString(const std::string & _xmlContent)
32   {
33
34   }
35
36   // Parse un document xml à partir d'un flux d'entrée de données.
37   void CXMLParser::ParseStream(std::istream & _stream)
38   {
39
40   }
41
42} // namespace xml
43} // namespace xmlioserver
44
Note: See TracBrowser for help on using the repository browser.