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

namespace Arabica {
namespace DOM {

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

}
}