Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 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 CORE_FPDFAPI_FPDF_PAGE_CPDF_CLIPPATHDATA_H_ | |
| 8 #define CORE_FPDFAPI_FPDF_PAGE_CPDF_CLIPPATHDATA_H_ | |
| 9 | |
| 10 #include <stdint.h> | |
|
Tom Sepez
2016/03/17 20:15:38
Yeah, ok, not sure if we want fx_system.h instead
dsinclair
2016/03/17 20:37:41
Acknowledged. Including the lower level seems like
| |
| 11 | |
| 12 class CPDF_Path; | |
| 13 class CPDF_TextObject; | |
| 14 | |
| 15 class CPDF_ClipPathData { | |
| 16 public: | |
| 17 CPDF_ClipPathData(); | |
| 18 CPDF_ClipPathData(const CPDF_ClipPathData&); | |
| 19 ~CPDF_ClipPathData(); | |
| 20 | |
| 21 void SetCount(int path_count, int text_count); | |
| 22 | |
| 23 int m_PathCount; | |
| 24 CPDF_Path* m_pPathList; | |
| 25 uint8_t* m_pTypeList; | |
| 26 int m_TextCount; | |
| 27 CPDF_TextObject** m_pTextList; | |
| 28 }; | |
| 29 | |
| 30 #endif // CORE_FPDFAPI_FPDF_PAGE_CPDF_CLIPPATHDATA_H_ | |
| OLD | NEW |