Commit d20d8bd9 authored by Christopher Mueller's avatar Christopher Mueller Committed by Hugo Beauzée-Luyssen

dash: node added hasattribute

Signed-off-by: default avatarHugo Beauzée-Luyssen <beauze.h@gmail.com>
parent 998f1619
......@@ -62,6 +62,13 @@ void Node::setName (const std::stri
this->name = name;
}
bool Node::hasAttribute (const std::string& name)
{
if(this->attributes.find(name) != this->attributes.end())
return true;
return false;
}
const std::string& Node::getAttributeValue (const std::string& key) const
{
std::map<std::string, std::string>::const_iterator it = this->attributes.find( key );
......
......@@ -44,6 +44,7 @@ namespace dash
void addSubNode (Node *node);
const std::string& getName () const;
void setName (const std::string& name);
bool hasAttribute (const std::string& name);
void addAttribute (const std::string& key, const std::string& value);
const std::string& getAttributeValue (const std::string& key) const;
std::vector<std::string> getAttributeKeys () const;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment