XmlElementVector.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 "XmlElementVector.hpp"
00033
00034 #include <string>
00035
00036 #include "XmlElement.hpp"
00037
00038 using namespace mermaid::support::xml;
00039 using std::string;
00040
00041
00042
00043 XmlElementVector XmlElementVector::getElementsWithName (string name)
00044 {
00045 XmlElementVector vector;
00046
00047 for (XmlElementVector::iterator it = this->begin();
00048 it != this->end();
00049 it++) {
00050 shared_ptr<XmlElement> e = *it;
00051 string s = e->getName();
00052
00053 if (s.compare (name) == 0) {
00054 vector.push_back (e);
00055 }
00056 }
00057
00058 return vector;
00059 }
00060
00061
00062
00063 shared_ptr<XmlElement> XmlElementVector::getFirstElementWithName (string name)
00064 {
00065 XmlElementVector v = this->getElementsWithName (name);
00066
00067 if (v.size() > 0) {
00068 return v[0];
00069 }
00070 else {
00071 return shared_ptr<XmlElement>();
00072 }
00073 }