DCL 4.0
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 185 of file XMLParser.h.

187{
188 _writer << _obj.toString();
189 return _writer;
190}
virtual String toString() const

◆ operator<<() [2/2]

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

Definition at line 178 of file XMLParser.h.

180{
181 _writer << _obj.toString();
182 return _writer;
183}
virtual String toString() const
Definition Object.cpp:187