summaryrefslogtreecommitdiffstats
path: root/src/uscxml/plugins/datamodel/ecmascript/v8/V8DOM.cpp
blob: be20bee9bdf8373d883dadb3f869627e84e57d29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "V8DOM.h"

namespace Arabica {
namespace DOM {

V8DOM::V8DOM() {
}

V8DOM::~V8DOM() {
	if (xpath)
		delete(xpath);
	if (storage)
		delete(storage);
}

}
}