summaryrefslogtreecommitdiffstats
path: root/src/uscxml/plugins/datamodel/ecmascript/v8/dom/V8CDATASection.cpp
blob: 90495f4922869084d798bfad20f194f2c18c591f (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);
  }

} 
}