| 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_SRC_FGAS_INCLUDE_FX_UTL_H_ | 7 #ifndef XFA_SRC_FGAS_INCLUDE_FX_UTL_H_ |
| 8 #define XFA_SRC_FGAS_INCLUDE_FX_UTL_H_ | 8 #define XFA_SRC_FGAS_INCLUDE_FX_UTL_H_ |
| 9 | 9 |
| 10 #include "core/include/fxcrt/fx_coordinates.h" // For CFX_Rect. |
| 10 #include "xfa/src/fgas/include/fx_mem.h" | 11 #include "xfa/src/fgas/include/fx_mem.h" |
| 11 #include "core/include/fxcrt/fx_coordinates.h" // For CFX_Rect. | |
| 12 | 12 |
| 13 class CFX_BaseArray; | 13 class CFX_BaseArray; |
| 14 template <class baseType> | 14 template <class baseType> |
| 15 class CFX_BaseArrayTemplate; | 15 class CFX_BaseArrayTemplate; |
| 16 template <class baseType> | 16 template <class baseType> |
| 17 class CFX_ObjectBaseArrayTemplate; | 17 class CFX_ObjectBaseArrayTemplate; |
| 18 class CFX_BaseMassArray; | 18 class CFX_BaseMassArray; |
| 19 class CFX_BaseMassArrayImp; | 19 class CFX_BaseMassArrayImp; |
| 20 template <class baseType> | 20 template <class baseType> |
| 21 class CFX_MassArrayTemplate; | 21 class CFX_MassArrayTemplate; |
| (...skipping 686 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 708 pLast->SetNextNode(pChild); | 708 pLast->SetNextNode(pChild); |
| 709 } | 709 } |
| 710 return pChild; | 710 return pChild; |
| 711 } | 711 } |
| 712 | 712 |
| 713 protected: | 713 protected: |
| 714 CPLTreeNode m_Root; | 714 CPLTreeNode m_Root; |
| 715 }; | 715 }; |
| 716 | 716 |
| 717 #endif // XFA_SRC_FGAS_INCLUDE_FX_UTL_H_ | 717 #endif // XFA_SRC_FGAS_INCLUDE_FX_UTL_H_ |
| OLD | NEW |