Class that abstracts a XMLDeclaration. More...
#include <cgicc/XMLDeclaration.h>
Public Member Functions | |
Constructor and Destructor | |
XMLDeclaration (std::string version="1.0") | |
Constructor. | |
virtual | ~XMLDeclaration () |
Destructor. | |
![]() | |
XMLPI (std::string name) | |
Constructor. | |
virtual | ~XMLPI () |
Destructor. | |
XMLPI & | operator= (const XMLPI &element) |
std::string | getName () const |
const HTMLAttributeList * | getAttributes () const |
void | setAttributes (const HTMLAttributeList &attributes) |
XMLPI & | set (const std::string &name) |
XMLPI & | set (const std::string &name, const std::string &value) |
virtual void | render (std::ostream &out) const |
Write this object to a stream. | |
![]() | |
MStreamable () | |
Empty constructor. | |
virtual | ~MStreamable () |
Empty destructor. | |
virtual void | render (std::ostream &out) const =0 |
Write this object to a stream. | |
Class that abstracts a XMLDeclaration.
This class add the XMLDeclaration feature
Definition at line 42 of file XMLDeclaration.h.
|
inline |
Constructor.
Create a new XMLDeclaration.h object
input | The Xml version (generally 1.0 or 1.1) |
Definition at line 55 of file XMLDeclaration.h.
|
inlinevirtual |