OLD | NEW |
1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 PDFium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
6 | 6 |
7 #ifndef XFA_FXFA_PARSER_XFA_SCRIPT_RESOLVEPROCESSOR_H_ | 7 #ifndef XFA_FXFA_PARSER_CXFA_RESOLVEPROCESSOR_H_ |
8 #define XFA_FXFA_PARSER_XFA_SCRIPT_RESOLVEPROCESSOR_H_ | 8 #define XFA_FXFA_PARSER_CXFA_RESOLVEPROCESSOR_H_ |
9 | 9 |
10 #include "xfa/fxfa/parser/xfa_object.h" | 10 #include "xfa/fxfa/parser/xfa_object.h" |
11 #include "xfa/fxfa/parser/xfa_script.h" | 11 #include "xfa/fxfa/parser/xfa_resolvenode_rs.h" |
12 | 12 |
13 class CXFA_NodeHelper; | 13 class CXFA_NodeHelper; |
14 class CXFA_ScriptContext; | 14 class CXFA_ScriptContext; |
15 | 15 |
16 class CXFA_ResolveNodesData { | 16 class CXFA_ResolveNodesData { |
17 public: | 17 public: |
18 CXFA_ResolveNodesData(CXFA_ScriptContext* pSC = nullptr); | 18 CXFA_ResolveNodesData(CXFA_ScriptContext* pSC = nullptr); |
19 ~CXFA_ResolveNodesData(); | 19 ~CXFA_ResolveNodesData(); |
20 | 20 |
21 CXFA_ScriptContext* m_pSC; | 21 CXFA_ScriptContext* m_pSC; |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 void DoPredicateFilter(int32_t iCurIndex, | 68 void DoPredicateFilter(int32_t iCurIndex, |
69 CFX_WideString wsCondition, | 69 CFX_WideString wsCondition, |
70 int32_t iFoundCount, | 70 int32_t iFoundCount, |
71 CXFA_ResolveNodesData& rnd); | 71 CXFA_ResolveNodesData& rnd); |
72 void FilterCondition(CXFA_ResolveNodesData& rnd, CFX_WideString wsCondition); | 72 void FilterCondition(CXFA_ResolveNodesData& rnd, CFX_WideString wsCondition); |
73 | 73 |
74 int32_t m_iCurStart; | 74 int32_t m_iCurStart; |
75 CXFA_NodeHelper* m_pNodeHelper; | 75 CXFA_NodeHelper* m_pNodeHelper; |
76 }; | 76 }; |
77 | 77 |
78 #endif // XFA_FXFA_PARSER_XFA_SCRIPT_RESOLVEPROCESSOR_H_ | 78 #endif // XFA_FXFA_PARSER_CXFA_RESOLVEPROCESSOR_H_ |
OLD | NEW |