// This file is part of OpenCV project. // It is subject to the license terms in the LICENSE file found in the top-level directory // of this distribution and at http://opencv.org/license.html. // // Tencent is pleased to support the open source community by making WeChat QRCode available. // Copyright (C) 2020 THL A29 Limited, a Tencent company. All rights reserved. // // Modified from ZXing. Copyright ZXing authors. // Licensed under the Apache License, Version 2.0 (the "License"). #ifndef __ZXING_COMMON_BITSOURCE_HPP__ #define __ZXING_COMMON_BITSOURCE_HPP__ #include "../errorhandler.hpp" #include "array.hpp" namespace zxing { /** *
This provides an easy abstraction to read bits at a time from a sequence * of bytes, where the number of bits read is not often a multiple of 8.
* *This class is not thread-safe.
* * @author srowen@google.com (Sean Owen) * @author christian.brunschen@gmail.com (Christian Brunschen) */ class BitSource : public Counted { typedef char byte; private: ArrayRef