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

} 
}