| Index: xfa/fxbarcode/common/BC_CommonByteArray.h
|
| diff --git a/xfa/fxbarcode/common/BC_CommonByteArray.h b/xfa/fxbarcode/common/BC_CommonByteArray.h
|
| index eaf68d9f41b77ff2ecddf6ba5c4c04425fc09cee..2570f81c0f64afc34e749668c2088a620fc21c4c 100644
|
| --- a/xfa/fxbarcode/common/BC_CommonByteArray.h
|
| +++ b/xfa/fxbarcode/common/BC_CommonByteArray.h
|
| @@ -10,16 +10,12 @@
|
| #include "core/fxcrt/include/fx_basic.h"
|
|
|
| class CBC_CommonByteArray {
|
| - private:
|
| - int32_t m_size;
|
| - int32_t m_index;
|
| - uint8_t* m_bytes;
|
| -
|
| public:
|
| CBC_CommonByteArray();
|
| - CBC_CommonByteArray(int32_t size);
|
| + explicit CBC_CommonByteArray(int32_t size);
|
| CBC_CommonByteArray(uint8_t* byteArray, int32_t size);
|
| virtual ~CBC_CommonByteArray();
|
| +
|
| int32_t At(int32_t index);
|
| void Set(int32_t index, int32_t value);
|
| int32_t Size();
|
| @@ -28,6 +24,11 @@ class CBC_CommonByteArray {
|
| void Reserve(int32_t capacity);
|
| void Set(uint8_t* source, int32_t offset, int32_t count);
|
| void Set(CFX_ByteArray* source, int32_t offset, int32_t count);
|
| +
|
| + private:
|
| + int32_t m_size;
|
| + int32_t m_index;
|
| + uint8_t* m_bytes;
|
| };
|
|
|
| #endif // XFA_FXBARCODE_COMMON_BC_COMMONBYTEARRAY_H_
|
|
|