You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdeedu/kvoctrain/kvoctrain/kvt-core/kvt-xml/XmlElement.cpp

99 lines
2.2 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

/*
This file is part of KIllustrator.
Copyright (C) 1998 Kai-Uwe Sattler (kus@iti.cs.uni-magdeburg.de)
modified for kvoctrain by Ewald Arnold kvoctrain@ewald-arnold.dein April ´99
-----------------------------------------------------------------------
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Library General Public License as
published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include <stdlib.h>
#include "XmlElement.h"
XmlAttribute::XmlAttribute (const KOXML_STRING& n, const KOXML_STRING& v) :
aname (n), value (v) {
}
XmlAttribute::XmlAttribute (const XmlAttribute& attr) :
aname (attr.aname), value (attr.value) {
}
XmlAttribute::~XmlAttribute () {
}
XmlAttribute& XmlAttribute::operator= (const XmlAttribute& attr) {
aname = attr.aname;
value = attr.value;
return *this;
}
float XmlAttribute::floatValue () const {
#ifndef KOXML_USE_STL
return atof (value.local8Bit());
#else
return atof (value.data());
#endif
}
int XmlAttribute::intValue () const {
#ifndef KOXML_USE_STL
return atoi (value.local8Bit());
#else
return atoi (value.data());
#endif
}
XmlElement::XmlElement () {
closed = false;
endTag = false;
}
XmlElement::XmlElement (const XmlElement& elem) :
tagId (elem.tagId), closed (elem.closed), endTag (elem.endTag),
attribs (elem.attribs) {
}
XmlElement::~XmlElement () {
}
void XmlElement::reset () {
tagId = "";
closed = false;
endTag = false;
attribs.erase (attribs.begin (), attribs.end ());
}
XmlElement& XmlElement::operator= (const XmlElement& elem) {
tagId = elem.tagId;
closed = elem.closed;
endTag = elem.endTag;
attribs = elem.attribs;
return *this;
}