SemanticNode.cpp
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030 #include "config.h"
00031
00032 #include "SemanticNode.hpp"
00033
00034 #include <Exception.hpp>
00035
00036 using namespace mermaid::support::data;
00037 using mermaid::support::errorhandling::Exception;
00038
00039 SemanticNode::SemanticNode()
00040 {
00041 name_ = "undefined";
00042 };
00043
00044 SemanticNode::SemanticNode (std::string name)
00045 {
00046 name_ = name;
00047 };
00048
00049 SemanticNodeVector SemanticNode::getChildren()
00050 {
00051 return children_;
00052 };
00053
00054 void SemanticNode::addChild (shared_ptr<SemanticNode> child)
00055 {
00056 children_.push_back (child);
00057 };
00058
00059 std::string SemanticNode::getName()
00060 {
00061 return name_;
00062 };
00063
00064 shared_ptr<SemanticNode> SemanticNode::getChildWithName (std::string name)
00065 {
00066 SemanticNodeVector children = getChildren();
00067
00068 SemanticNodeVector::iterator it;
00069 for (it = children.begin(); it != children.end(); it++) {
00070 shared_ptr<SemanticNode> child = *it;
00071 if (child->getName().compare (name) == 0) {
00072 return child;
00073 }
00074 else {
00075 shared_ptr<SemanticNode> tmp;
00076 tmp = child->getChildWithName (name);
00077 if (tmp) {
00078 return tmp;
00079 }
00080 }
00081 }
00082
00083 return shared_ptr<SemanticNode>();
00084 };