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 _SCRIPT_LOGPSEUDOMODEL_H_ 8 #define _SCRIPT_LOGPSEUDOMODEL_H_ 9 class CScript_LogPseudoModel : public CXFA_OrdinaryObject { 10 public: 11 CScript_LogPseudoModel(CXFA_Document* pDocument); 12 virtual ~CScript_LogPseudoModel(); 13 14 void Script_LogPseudoModel_Message(CFXJSE_Arguments* pArguments); 15 void Script_LogPseudoModel_TraceEnabled(CFXJSE_Arguments* pArguments); 16 void Script_LogPseudoModel_TraceActivate(CFXJSE_Arguments* pArguments); 17 void Script_LogPseudoModel_TraceDeactivate(CFXJSE_Arguments* pArguments); 18 void Script_LogPseudoModel_Trace(CFXJSE_Arguments* pArguments); 19 }; 20 #endif 21