1 // Copyright 2014 PDFium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
10 class Report : public CJS_EmbedObj
13 Report(CJS_Object * pJSObject);
17 FX_BOOL save(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& vRet, JS_ErrorString& sError);
18 FX_BOOL writeText(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& vRet, JS_ErrorString& sError);
21 class CJS_Report : public CJS_Object
24 CJS_Report(JSFXObject pObject) : CJS_Object(pObject){};
25 virtual ~CJS_Report(){};
28 DECLARE_JS_CLASS(CJS_Report);
30 JS_STATIC_METHOD(save, Report)
31 JS_STATIC_METHOD(writeText, Report);