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. 4 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com 6 7 #ifndef FPDFSDK_INCLUDE_JAVASCRIPT_REPORT_H_ 8 #define FPDFSDK_INCLUDE_JAVASCRIPT_REPORT_H_ 9 10 #include "JS_Define.h" 11 12 class Report : public CJS_EmbedObj 13 { 14 public: 15 Report(CJS_Object * pJSObject); 16 virtual ~Report(); 17 18 public: 19 FX_BOOL save(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& vRet, CFX_WideString& sError); 20 FX_BOOL writeText(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& vRet, CFX_WideString& sError); 21 }; 22 23 class CJS_Report : public CJS_Object 24 { 25 public: CJS_Report(JSFXObject pObject)26 CJS_Report(JSFXObject pObject) : CJS_Object(pObject){}; ~CJS_Report()27 virtual ~CJS_Report(){}; 28 29 public: 30 DECLARE_JS_CLASS(CJS_Report); 31 32 JS_STATIC_METHOD(save, Report) 33 JS_STATIC_METHOD(writeText, Report); 34 }; 35 36 #endif // FPDFSDK_INCLUDE_JAVASCRIPT_REPORT_H_ 37