Yate
|
Xml Declaration. More...
#include <yatexml.h>
Public Member Functions | |
XmlDeclaration (const char *version="1.0", const char *enc="utf-8") | |
XmlDeclaration (const NamedList &decl) | |
XmlDeclaration (const XmlDeclaration &orig) | |
~XmlDeclaration () | |
const NamedList & | getDec () const |
virtual XmlDeclaration * | xmlDeclaration () |
void | toString (String &dump, bool escape=true) const |
Public Member Functions inherited from XmlChild | |
XmlChild () | |
virtual void | setParent (XmlParent *parent) |
virtual XmlElement * | xmlElement () |
virtual XmlComment * | xmlComment () |
virtual XmlCData * | xmlCData () |
virtual XmlText * | xmlText () |
virtual XmlDoctype * | xmlDoctype () |
Public Member Functions inherited from GenObject | |
GenObject () | |
virtual | ~GenObject () |
virtual bool | alive () const |
virtual void | destruct () |
virtual const String & | toString () const |
virtual void * | getObject (const String &name) const |
NamedCounter * | getObjCounter () const |
NamedCounter * | setObjCounter (NamedCounter *counter) |
Additional Inherited Members | |
Static Public Member Functions inherited from GenObject | |
static void * | getObject (const String &name, const GenObject *obj) |
static bool | getObjCounting () |
static void | setObjCounting (bool enable) |
static NamedCounter * | getObjCounter (const String &name, bool create=true) |
static ObjList & | getObjCounters () |
Xml Declaration.
Xml Declaration for Xml document
XmlDeclaration | ( | const char * | version = "1.0" , |
const char * | enc = "utf-8" |
||
) |
Constructor
version | XML version attribute |
enc | Encoding attribute |
XmlDeclaration | ( | const NamedList & | decl | ) |
Constructor
decl | Declaration attributes |
XmlDeclaration | ( | const XmlDeclaration & | orig | ) |
Copy constructor
orig | Original XmlDeclaration |
~XmlDeclaration | ( | ) |
Destructor
|
inline |
Obtain the tag name and attributes list
void toString | ( | String & | dump, |
bool | escape = true |
||
) | const |
Build a String from this XmlDeclaration
dump | The string where to append representation |
escape | True if the attributes values need to be escaped |
|
inlinevirtual |