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_FXBARCODE_COMMON_BC_COMMONBITARRAY_H_ | 7 #ifndef XFA_FXBARCODE_COMMON_BC_COMMONBITARRAY_H_ |
8 #define XFA_SRC_FXBARCODE_COMMON_BC_COMMONBITARRAY_H_ | 8 #define XFA_FXBARCODE_COMMON_BC_COMMONBITARRAY_H_ |
9 | 9 |
10 #include "core/include/fxcrt/fx_basic.h" | 10 #include "core/include/fxcrt/fx_basic.h" |
11 | 11 |
12 class CBC_CommonBitArray { | 12 class CBC_CommonBitArray { |
13 public: | 13 public: |
14 CBC_CommonBitArray(CBC_CommonBitArray* array); | 14 CBC_CommonBitArray(CBC_CommonBitArray* array); |
15 CBC_CommonBitArray(int32_t size); | 15 CBC_CommonBitArray(int32_t size); |
16 CBC_CommonBitArray(); | 16 CBC_CommonBitArray(); |
17 virtual ~CBC_CommonBitArray(); | 17 virtual ~CBC_CommonBitArray(); |
18 int32_t GetSize(); | 18 int32_t GetSize(); |
19 CFX_Int32Array& GetBits(); | 19 CFX_Int32Array& GetBits(); |
20 int32_t GetSizeInBytes(); | 20 int32_t GetSizeInBytes(); |
21 FX_BOOL Get(int32_t i); | 21 FX_BOOL Get(int32_t i); |
22 void Set(int32_t i); | 22 void Set(int32_t i); |
23 void Flip(int32_t i); | 23 void Flip(int32_t i); |
24 void SetBulk(int32_t i, int32_t newBits); | 24 void SetBulk(int32_t i, int32_t newBits); |
25 FX_BOOL IsRange(int32_t start, int32_t end, FX_BOOL value, int32_t& e); | 25 FX_BOOL IsRange(int32_t start, int32_t end, FX_BOOL value, int32_t& e); |
26 int32_t* GetBitArray(); | 26 int32_t* GetBitArray(); |
27 void Reverse(); | 27 void Reverse(); |
28 void Clear(); | 28 void Clear(); |
29 | 29 |
30 private: | 30 private: |
31 int32_t m_size; | 31 int32_t m_size; |
32 CFX_Int32Array m_bits; | 32 CFX_Int32Array m_bits; |
33 }; | 33 }; |
34 | 34 |
35 #endif // XFA_SRC_FXBARCODE_COMMON_BC_COMMONBITARRAY_H_ | 35 #endif // XFA_FXBARCODE_COMMON_BC_COMMONBITARRAY_H_ |
OLD | NEW |