summaryrefslogtreecommitdiff
path: root/xfa/src/fxbarcode/pdf417/BC_PDF417ResultMetadata.h
blob: d635137e9da6bfae90f8d15a9088d8a0c906bb0c (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
// 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 _BC_PDF417READER_H_
#define _BC_PDF417READER_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