#include <XMLDocument.h>
Inheritance diagram for util::xml::ProcessingInstruction:

Public Methods | |
| ProcessingInstruction (std::string n) | |
| Create a processing instruction node with the given name. | |
| ProcessingInstruction (std::string n, std::string str) | |
| Create a processing instruction node with the given name and contents. | |
| std::string | getName () const |
| Get the name of this processing instruction. | |
| void | printOut (std::ostream &out) const throw (util::io::IOException&) |
| Print out the contents of a processing instruction. | |
Public Attributes | |
| std::string | name |
| The name of the instruction, i.e. | |
| std::string | contents |
| The rest of the processing instruction. | |
|
|
The name of the instruction, i.e. the 'tag' part in <?tag>. |