summaryrefslogtreecommitdiff
path: root/xfa/src/fxbarcode/pdf417/BC_PDF417ResultMetadata.h
blob: e6c77803049aeefa7cd01e5286579866b3b79cfb (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
// 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;
class CBC_PDF417ResultMetadata : public CFX_Object
{
public:
    CBC_PDF417ResultMetadata();
    virtual ~CBC_PDF417ResultMetadata();
    FX_INT32 getSegmentIndex();
    void setSegmentIndex(FX_INT32 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:
    FX_INT32 m_segmentIndex;
    CFX_ByteString m_fileId;
    CFX_Int32Array m_optionalData;
    FX_BOOL m_lastSegment;
};
#endif