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 _BC_COMMONBITMATRIX_H_ | 7 #ifndef XFA_SRC_FXBARCODE_COMMON_BC_COMMONBITMATRIX_H_ |
8 #define _BC_COMMONBITMATRIX_H_ | 8 #define XFA_SRC_FXBARCODE_COMMON_BC_COMMONBITMATRIX_H_ |
| 9 |
9 class CBC_CommonBitArray; | 10 class CBC_CommonBitArray; |
10 class CBC_CommonBitMatrix { | 11 class CBC_CommonBitMatrix { |
11 public: | 12 public: |
12 CBC_CommonBitMatrix(); | 13 CBC_CommonBitMatrix(); |
13 virtual ~CBC_CommonBitMatrix(); | 14 virtual ~CBC_CommonBitMatrix(); |
14 FX_BOOL Get(int32_t x, int32_t y); | 15 FX_BOOL Get(int32_t x, int32_t y); |
15 void Set(int32_t x, int32_t y); | 16 void Set(int32_t x, int32_t y); |
16 void Flip(int32_t x, int32_t y); | 17 void Flip(int32_t x, int32_t y); |
17 void Clear(); | 18 void Clear(); |
18 void SetRegion(int32_t left, | 19 void SetRegion(int32_t left, |
(...skipping 12 matching lines...) Expand all Loading... |
31 virtual void Init(int32_t dimension); | 32 virtual void Init(int32_t dimension); |
32 virtual void Init(int32_t width, int32_t height); | 33 virtual void Init(int32_t width, int32_t height); |
33 int32_t* GetBits(); | 34 int32_t* GetBits(); |
34 | 35 |
35 private: | 36 private: |
36 int32_t m_width; | 37 int32_t m_width; |
37 int32_t m_height; | 38 int32_t m_height; |
38 int32_t m_rowSize; | 39 int32_t m_rowSize; |
39 int32_t* m_bits; | 40 int32_t* m_bits; |
40 }; | 41 }; |
41 #endif | 42 |
| 43 #endif // XFA_SRC_FXBARCODE_COMMON_BC_COMMONBITMATRIX_H_ |
OLD | NEW |