blob: a70d3efc4a15225e97b70d26eba42ef4be0f889f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
// Copyright 2014 PDFium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
#ifndef XFA_SRC_FXBARCODE_PDF417_BC_PDF417RESULTMETADATA_H_
#define XFA_SRC_FXBARCODE_PDF417_BC_PDF417RESULTMETADATA_H_
#include "core/include/fxcrt/fx_basic.h"
class CBC_PDF417ResultMetadata {
public:
CBC_PDF417ResultMetadata();
virtual ~CBC_PDF417ResultMetadata();
int32_t getSegmentIndex();
void setSegmentIndex(int32_t segmentIndex);
CFX_ByteString getFileId();
void setFileId(CFX_ByteString fileId);
CFX_Int32Array& getOptionalData();
void setOptionalData(CFX_Int32Array& optionalData);
FX_BOOL isLastSegment();
void setLastSegment(FX_BOOL lastSegment);
private:
int32_t m_segmentIndex;
CFX_ByteString m_fileId;
CFX_Int32Array m_optionalData;
FX_BOOL m_lastSegment;
};
#endif // XFA_SRC_FXBARCODE_PDF417_BC_PDF417RESULTMETADATA_H_
|