summaryrefslogtreecommitdiff
path: root/fxbarcode/qrcode/BC_QRCoderECBlocks.h
blob: 6c4f1cd9a710247d00914b830354faaeb0260449 (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
// 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 FXBARCODE_QRCODE_BC_QRCODERECBLOCKS_H_
#define FXBARCODE_QRCODE_BC_QRCODERECBLOCKS_H_

#include <stdint.h>

#include <vector>

struct CBC_QRCoderECBlockData;

class CBC_QRCoderECBlocks {
 public:
  explicit CBC_QRCoderECBlocks(const CBC_QRCoderECBlockData& data);
  ~CBC_QRCoderECBlocks();

  int32_t GetNumBlocks() const;
  int32_t GetTotalECCodeWords() const;
  int32_t GetTotalDataCodeWords() const;

 private:
  int32_t GetECCodeWordsPerBlock() const;

  const CBC_QRCoderECBlockData& m_data;
};

#endif  // FXBARCODE_QRCODE_BC_QRCODERECBLOCKS_H_