diff options
Diffstat (limited to 'fxjs/cjs_style.cpp')
-rw-r--r-- | fxjs/cjs_style.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/fxjs/cjs_style.cpp b/fxjs/cjs_style.cpp index be95e9a501..2a172c9918 100644 --- a/fxjs/cjs_style.cpp +++ b/fxjs/cjs_style.cpp @@ -21,3 +21,8 @@ void CJS_Style::DefineJSObjects(CFXJS_Engine* pEngine) { ObjDefnID = pEngine->DefineObj("style", FXJSOBJTYPE_STATIC, nullptr, nullptr); DefineConsts(pEngine, ObjDefnID, ConstSpecs, FX_ArraySize(ConstSpecs)); } + +CJS_Style::CJS_Style(v8::Local<v8::Object> pObject, CJS_Runtime* pRuntime) + : CJS_Object(pObject, pRuntime) {} + +CJS_Style::~CJS_Style() = default; |