summaryrefslogtreecommitdiff
path: root/project2/xml/mutators/create.cpp
blob: 2c271ddfd1f49b54574507881e9bbaa7bd0ee74f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include <pch.hpp>
#include "../xmlPresenter.h"
#include <libxml++/document.h>
#include <boost/foreach.hpp>

class Create : public XmlDocMutator {
	public:
		Create(ScriptNodePtr s) :
			XmlDocMutator(s),
			xpath(s, "xpath"),
			name(s, "name")
		{
		}
		void mutateElement(xmlpp::Element * root) const
		{
			BOOST_FOREACH(xmlpp::Node * e, root->find(xpath(NULL))) {
				e->add_child(name(NULL));
			}
		}
		Variable xpath;
		Variable name;
};

DECLARE_GENERIC_LOADER("create", XmlDocMutatorLoader, Create);