summaryrefslogtreecommitdiffstats
path: root/src/uscxml/plugins/datamodel/ecmascript/v8/dom/V8DocumentFragment.cpp
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-01-20 17:18:19 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-01-20 17:18:19 (GMT)
commitf4f05b40c8c464daf1e11df6fcdb63d05766ed1f (patch)
treea513019b456be25248212ab9d722e9c7bb5fdbc2 /src/uscxml/plugins/datamodel/ecmascript/v8/dom/V8DocumentFragment.cpp
parentb5c33505b3345795811b4aba7e5fda961068f369 (diff)
downloaduscxml-f4f05b40c8c464daf1e11df6fcdb63d05766ed1f.zip
uscxml-f4f05b40c8c464daf1e11df6fcdb63d05766ed1f.tar.gz
uscxml-f4f05b40c8c464daf1e11df6fcdb63d05766ed1f.tar.bz2
Completed V8 IDL to DOM generator
Diffstat (limited to 'src/uscxml/plugins/datamodel/ecmascript/v8/dom/V8DocumentFragment.cpp')
-rw-r--r--src/uscxml/plugins/datamodel/ecmascript/v8/dom/V8DocumentFragment.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/uscxml/plugins/datamodel/ecmascript/v8/dom/V8DocumentFragment.cpp b/src/uscxml/plugins/datamodel/ecmascript/v8/dom/V8DocumentFragment.cpp
new file mode 100644
index 0000000..e6bec84
--- /dev/null
+++ b/src/uscxml/plugins/datamodel/ecmascript/v8/dom/V8DocumentFragment.cpp
@@ -0,0 +1,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);
+ }
+
+}
+}