#pragma once
namespace ZXing {
class ByteArray;
class BitMatrix;
namespace MaxiCode {
class BitMatrixParser
{
public:
static ByteArray ReadCodewords(const BitMatrix& image);
static const int MATRIX_WIDTH = 30;
static const int MATRIX_HEIGHT = 33;
};
} }