DCL 3.7.4
Loading...
Searching...
No Matches
XMLParser.h File Reference
#include <dcl/Config.h>
#include <expat.h>
#include <dcl/Object.h>
#include <dcl/Exception.h>
#include <dcl/Array.h>
#include <dcl/Writer.h>

Go to the source code of this file.

Classes

class  XmlException
class  XmlDefaultHandler
class  XmlParser
class  XmlNode
class  XmlCharsNode
class  XmlElement
class  XmlDocument

Macros

#define __DCL_XML_PARSER_H__   20110703

Functions

DCLCAPI Writeroperator<< (Writer &_writer, const XmlNode &_obj) __DCL_THROWS1(IOException *)
DCLCAPI Writeroperator<< (Writer &_writer, const XmlDocument &_obj) __DCL_THROWS1(IOException *)

Macro Definition Documentation

◆ __DCL_XML_PARSER_H__

#define __DCL_XML_PARSER_H__   20110703

Definition at line 2 of file XMLParser.h.

Function Documentation

◆ operator<<() [1/2]

DCLCAPI Writer & operator<< ( Writer & _writer,
const XmlDocument & _obj )
inline

Definition at line 188 of file XMLParser.h.

190{
191 _writer << _obj.toString();
192 return _writer;
193}
virtual String toString() const

◆ operator<<() [2/2]

DCLCAPI Writer & operator<< ( Writer & _writer,
const XmlNode & _obj )
inline

Definition at line 181 of file XMLParser.h.

183{
184 _writer << _obj.toString();
185 return _writer;
186}
virtual String toString() const
Definition Object.cpp:187