| // Copyright 2014 PDFium Authors. All rights reserved.
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
| // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
|
| class Report : public CJS_EmbedObj
|
| Report(CJS_Object * pJSObject);
|
| FX_BOOL save(OBJ_METHOD_PARAMS);
|
| FX_BOOL writeText(OBJ_METHOD_PARAMS);
|
| class CJS_Report : public CJS_Object
|
| CJS_Report(JSFXObject pObject) : CJS_Object(pObject){};
|
| DECLARE_JS_CLASS(CJS_Report);
|
| JS_STATIC_METHOD(save, Report)
|
| JS_STATIC_METHOD(writeText, Report);
|