John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 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 | |
Tom Sepez | 19922bb | 2015-05-28 13:23:12 -0700 | [diff] [blame] | 7 | #ifndef FPDFSDK_INCLUDE_JAVASCRIPT_REPORT_H_ |
| 8 | #define FPDFSDK_INCLUDE_JAVASCRIPT_REPORT_H_ |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 9 | |
Tom Sepez | 9a3f812 | 2015-04-07 15:35:48 -0700 | [diff] [blame] | 10 | #include "JS_Define.h" |
| 11 | |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 12 | class Report : public CJS_EmbedObj |
| 13 | { |
| 14 | public: |
| 15 | Report(CJS_Object * pJSObject); |
| 16 | virtual ~Report(); |
| 17 | |
| 18 | public: |
Tom Sepez | 2f3dfef | 2015-03-02 15:35:26 -0800 | [diff] [blame] | 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); |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 21 | }; |
| 22 | |
| 23 | class CJS_Report : public CJS_Object |
| 24 | { |
| 25 | public: |
| 26 | CJS_Report(JSFXObject pObject) : CJS_Object(pObject){}; |
| 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 | |
Tom Sepez | 19922bb | 2015-05-28 13:23:12 -0700 | [diff] [blame] | 36 | #endif // FPDFSDK_INCLUDE_JAVASCRIPT_REPORT_H_ |