1 // Copyright 2014 PDFium Authors. All rights reserved.
\r
2 // Use of this source code is governed by a BSD-style license that can be
\r
3 // found in the LICENSE file.
\r
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
\r
7 #ifndef _BC_PDF417READER_H_
\r
8 #define _BC_PDF417READER_H_
\r
9 class CBC_PDF417ResultMetadata;
\r
10 class CBC_PDF417ResultMetadata : public CFX_Object
\r
13 CBC_PDF417ResultMetadata();
\r
14 virtual ~CBC_PDF417ResultMetadata();
\r
15 FX_INT32 getSegmentIndex();
\r
16 void setSegmentIndex(FX_INT32 segmentIndex);
\r
17 CFX_ByteString getFileId();
\r
18 void setFileId(CFX_ByteString fileId);
\r
19 CFX_Int32Array& getOptionalData();
\r
20 void setOptionalData(CFX_Int32Array &optionalData);
\r
21 FX_BOOL isLastSegment();
\r
22 void setLastSegment(FX_BOOL lastSegment);
\r
24 FX_INT32 m_segmentIndex;
\r
25 CFX_ByteString m_fileId;
\r
26 CFX_Int32Array m_optionalData;
\r
27 FX_BOOL m_lastSegment;
\r