63{
64 if (!document) {
65 document = new Element(name);
66 current_element = document;
67 } else {
68 dumpDataLines();
69
70 Element* temp_element = new Element(name);
71 if (temp_element) {
72 temp_element->SetParent(current_element);
74 }
75 current_element = temp_element;
76 }
77
78 if (!current_element) {
79 cerr << "In file " << getPath() << ": line " << getLine() << endl
80 << "No current element read (running out of memory?)" << endl;
81 throw("Fatal error");
82 }
83
86
87 for (int i=0; i<atts.size();i++) {
88 current_element->
AddAttribute(atts.getName(i), atts.getValue(i));
89 }
90}
void SetFileName(const std::string &name)
Set the name of the file in which the element has been read.
void AddAttribute(const std::string &name, const std::string &value)
Stores an attribute belonging to this element.
void SetLineNumber(int line)
Set the line number at which the element has been read.
void AddChildElement(Element *el)
Adds a child element to the list of children stored for this element.