summaryrefslogtreecommitdiffstats
path: root/src/uscxml/plugins/datamodel/ecmascript/v8/dom/V8CDATASection.cpp
blob: a348cd5539eb9583a4efd73e675116475fa884f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "V8CDATASection.h"
#include "V8Text.h"

namespace Arabica {
namespace DOM {

v8::Persistent<v8::FunctionTemplate> V8CDATASection::Tmpl;
bool V8CDATASection::hasInstance(v8::Handle<v8::Value> value) {
	return getTmpl()->HasInstance(value);
}

}
}