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

namespace Arabica {
namespace DOM {

v8::Persistent<v8::FunctionTemplate> V8DocumentFragment::Tmpl;

bool V8DocumentFragment::hasInstance(v8::Handle<v8::Value> value) {
	return getTmpl()->HasInstance(value);
}

}
}