zxing-cpp 0.5.1

A rust wrapper for the zxing-cpp barcode library.
Documentation
/*
* Copyright 2022 Axel Waggershauser
*/
// SPDX-License-Identifier: Apache-2.0

#pragma once

#include <string>

namespace ZXing {

class BitArray;

namespace OneD::DataBar {

std::string DecodeExpandedBits(const BitArray& bits);

} // namespace OneD::DataBar
} // namespace ZXing