summaryrefslogtreecommitdiffstats
path: root/src/uscxml/plugins/datamodel/ecmascript/v8/dom/V8CDATASection.cpp
blob: a9e5ac9e532038036a02559fe54d7986421ea4fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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);
}

}
}