Class that abstracts a XMLDeclaration. More...
#include <cgicc/XMLDeclaration.h>
Public Member Functions | |
Constructor and Destructor | |
| XMLDeclaration (std::string version="1.0") | |
| Constructor. More... | |
| virtual | ~XMLDeclaration () |
| Destructor. More... | |
Public Member Functions inherited from cgicc::XMLPI | |
| XMLPI (std::string name) | |
| Constructor. More... | |
| virtual | ~XMLPI () |
| Destructor. More... | |
| 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. More... | |
Public Member Functions inherited from cgicc::MStreamable | |
| MStreamable () | |
| Empty constructor. More... | |
| virtual | ~MStreamable () |
| Empty destructor. More... | |
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 |