├── LICENSE ├── QZXing ├── CameraImageWrapper.cpp ├── CameraImageWrapper.h ├── LICENSE.txt ├── QZXing.h ├── QZXing.pri ├── QZXing.pro ├── QZXing_global.h ├── imagehandler.cpp ├── imagehandler.h ├── qzxing.cpp └── zxing │ ├── bigint │ ├── BigInteger.cc │ ├── BigInteger.hh │ ├── BigIntegerAlgorithms.cc │ ├── BigIntegerAlgorithms.hh │ ├── BigIntegerLibrary.hh │ ├── BigIntegerUtils.cc │ ├── BigIntegerUtils.hh │ ├── BigUnsigned.cc │ ├── BigUnsigned.hh │ ├── BigUnsignedInABase.cc │ ├── BigUnsignedInABase.hh │ ├── ChangeLog │ ├── NumberlikeArray.hh │ └── README │ ├── win32 │ └── zxing │ │ ├── iconv.h │ │ ├── msvc │ │ └── stdint.h │ │ └── win_iconv.c │ └── zxing │ ├── BarcodeFormat.cpp │ ├── BarcodeFormat.h │ ├── Binarizer.cpp │ ├── Binarizer.h │ ├── BinaryBitmap.cpp │ ├── BinaryBitmap.h │ ├── ChecksumException.cpp │ ├── ChecksumException.h │ ├── DecodeHints.cpp │ ├── DecodeHints.h │ ├── Exception.cpp │ ├── Exception.h │ ├── FormatException.cpp │ ├── FormatException.h │ ├── IllegalStateException.h │ ├── InvertedLuminanceSource.cpp │ ├── InvertedLuminanceSource.h │ ├── LuminanceSource.cpp │ ├── LuminanceSource.h │ ├── MultiFormatReader.cpp │ ├── MultiFormatReader.h │ ├── NotFoundException.h │ ├── Reader.cpp │ ├── Reader.h │ ├── ReaderException.h │ ├── Result.cpp │ ├── Result.h │ ├── ResultIO.cpp │ ├── ResultPoint.cpp │ ├── ResultPoint.h │ ├── ResultPointCallback.cpp │ ├── ResultPointCallback.h │ ├── WriterException.h │ ├── ZXing.h │ ├── aztec │ ├── AztecDetectorResult.cpp │ ├── AztecDetectorResult.h │ ├── AztecReader.cpp │ ├── AztecReader.h │ ├── decoder │ │ ├── AztecDecoder.cpp │ │ └── Decoder.h │ └── detector │ │ ├── AztecDetector.cpp │ │ └── Detector.h │ ├── common │ ├── Array.h │ ├── BitArray.cpp │ ├── BitArray.h │ ├── BitArrayIO.cpp │ ├── BitMatrix.cpp │ ├── BitMatrix.h │ ├── BitSource.cpp │ ├── BitSource.h │ ├── CharacterSetECI.cpp │ ├── CharacterSetECI.h │ ├── Counted.h │ ├── DecoderResult.cpp │ ├── DecoderResult.h │ ├── DetectorResult.cpp │ ├── DetectorResult.h │ ├── GlobalHistogramBinarizer.cpp │ ├── GlobalHistogramBinarizer.h │ ├── GreyscaleLuminanceSource.cpp │ ├── GreyscaleLuminanceSource.h │ ├── GreyscaleRotatedLuminanceSource.cpp │ ├── GreyscaleRotatedLuminanceSource.h │ ├── GridSampler.cpp │ ├── GridSampler.h │ ├── HybridBinarizer.cpp │ ├── HybridBinarizer.h │ ├── IllegalArgumentException.cpp │ ├── IllegalArgumentException.h │ ├── PerspectiveTransform.cpp │ ├── PerspectiveTransform.h │ ├── Point.h │ ├── Str.cpp │ ├── Str.h │ ├── StringUtils.cpp │ ├── StringUtils.h │ ├── detector │ │ ├── JavaMath.h │ │ ├── MathUtils.h │ │ ├── MonochromeRectangleDetector.cpp │ │ ├── MonochromeRectangleDetector.h │ │ ├── WhiteRectangleDetector.cpp │ │ └── WhiteRectangleDetector.h │ └── reedsolomon │ │ ├── GenericGF.cpp │ │ ├── GenericGF.h │ │ ├── GenericGFPoly.cpp │ │ ├── GenericGFPoly.h │ │ ├── ReedSolomonDecoder.cpp │ │ ├── ReedSolomonDecoder.h │ │ ├── ReedSolomonException.cpp │ │ └── ReedSolomonException.h │ ├── datamatrix │ ├── DataMatrixReader.cpp │ ├── DataMatrixReader.h │ ├── DataMatrixVersion.cpp │ ├── Version.h │ ├── decoder │ │ ├── BitMatrixParser.h │ │ ├── DataBlock.h │ │ ├── DataMatrixBitMatrixParser.cpp │ │ ├── DataMatrixDataBlock.cpp │ │ ├── DataMatrixDecodedBitStreamParser.cpp │ │ ├── DataMatrixDecoder.cpp │ │ ├── DecodedBitStreamParser.h │ │ └── Decoder.h │ └── detector │ │ ├── CornerPoint.h │ │ ├── DataMatrixCornerPoint.cpp │ │ ├── DataMatrixDetector.cpp │ │ ├── DataMatrixDetectorException.cpp │ │ ├── Detector.h │ │ └── DetectorException.h │ ├── multi │ ├── ByQuadrantReader.cpp │ ├── ByQuadrantReader.h │ ├── GenericMultipleBarcodeReader.cpp │ ├── GenericMultipleBarcodeReader.h │ ├── MultipleBarcodeReader.cpp │ ├── MultipleBarcodeReader.h │ └── qrcode │ │ ├── QRCodeMultiReader.cpp │ │ ├── QRCodeMultiReader.h │ │ └── detector │ │ ├── MultiDetector.cpp │ │ ├── MultiDetector.h │ │ ├── MultiFinderPatternFinder.cpp │ │ └── MultiFinderPatternFinder.h │ ├── oned │ ├── CodaBarReader.cpp │ ├── CodaBarReader.h │ ├── Code128Reader.cpp │ ├── Code128Reader.h │ ├── Code39Reader.cpp │ ├── Code39Reader.h │ ├── Code93Reader.cpp │ ├── Code93Reader.h │ ├── EAN13Reader.cpp │ ├── EAN13Reader.h │ ├── EAN8Reader.cpp │ ├── EAN8Reader.h │ ├── ITFReader.cpp │ ├── ITFReader.h │ ├── MultiFormatOneDReader.cpp │ ├── MultiFormatOneDReader.h │ ├── MultiFormatUPCEANReader.cpp │ ├── MultiFormatUPCEANReader.h │ ├── OneDReader.cpp │ ├── OneDReader.h │ ├── OneDResultPoint.cpp │ ├── OneDResultPoint.h │ ├── UPCAReader.cpp │ ├── UPCAReader.h │ ├── UPCEANReader.cpp │ ├── UPCEANReader.h │ ├── UPCEReader.cpp │ └── UPCEReader.h │ ├── pdf417 │ ├── PDF417Reader.cpp │ ├── PDF417Reader.h │ ├── decoder │ │ ├── BitMatrixParser.h │ │ ├── DecodedBitStreamParser.h │ │ ├── Decoder.h │ │ ├── PDF417BitMatrixParser.cpp │ │ ├── PDF417DecodedBitStreamParser.cpp │ │ ├── PDF417Decoder.cpp │ │ └── ec │ │ │ ├── ErrorCorrection.cpp │ │ │ ├── ErrorCorrection.h │ │ │ ├── ModulusGF.cpp │ │ │ ├── ModulusGF.h │ │ │ ├── ModulusPoly.cpp │ │ │ └── ModulusPoly.h │ └── detector │ │ ├── Detector.h │ │ ├── LinesSampler.cpp │ │ ├── LinesSampler.h │ │ └── PDF417Detector.cpp │ └── qrcode │ ├── ErrorCorrectionLevel.h │ ├── FormatInformation.h │ ├── QRCodeReader.cpp │ ├── QRCodeReader.h │ ├── QRErrorCorrectionLevel.cpp │ ├── QRFormatInformation.cpp │ ├── QRVersion.cpp │ ├── Version.h │ ├── decoder │ ├── BitMatrixParser.h │ ├── DataBlock.h │ ├── DataMask.h │ ├── DecodedBitStreamParser.h │ ├── Decoder.h │ ├── Mode.h │ ├── QRBitMatrixParser.cpp │ ├── QRDataBlock.cpp │ ├── QRDataMask.cpp │ ├── QRDecodedBitStreamParser.cpp │ ├── QRDecoder.cpp │ └── QRMode.cpp │ └── detector │ ├── AlignmentPattern.h │ ├── AlignmentPatternFinder.h │ ├── Detector.h │ ├── FinderPattern.h │ ├── FinderPatternFinder.h │ ├── FinderPatternInfo.h │ ├── QRAlignmentPattern.cpp │ ├── QRAlignmentPatternFinder.cpp │ ├── QRDetector.cpp │ ├── QRFinderPattern.cpp │ ├── QRFinderPatternFinder.cpp │ └── QRFinderPatternInfo.cpp ├── README.md └── src ├── BillDownloader.pro ├── cnetclient.cpp ├── cnetclient.h ├── cwimage.cpp ├── cwimage.h ├── dialogcopytext.cpp ├── dialogcopytext.h ├── dialogcopytext.ui ├── dialogscanreceipt.cpp ├── dialogscanreceipt.h ├── dialogscanreceipt.ui ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h └── mainwindow.ui /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/LICENSE -------------------------------------------------------------------------------- /QZXing/CameraImageWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/CameraImageWrapper.cpp -------------------------------------------------------------------------------- /QZXing/CameraImageWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/CameraImageWrapper.h -------------------------------------------------------------------------------- /QZXing/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/LICENSE.txt -------------------------------------------------------------------------------- /QZXing/QZXing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/QZXing.h -------------------------------------------------------------------------------- /QZXing/QZXing.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/QZXing.pri -------------------------------------------------------------------------------- /QZXing/QZXing.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/QZXing.pro -------------------------------------------------------------------------------- /QZXing/QZXing_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/QZXing_global.h -------------------------------------------------------------------------------- /QZXing/imagehandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/imagehandler.cpp -------------------------------------------------------------------------------- /QZXing/imagehandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/imagehandler.h -------------------------------------------------------------------------------- /QZXing/qzxing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/qzxing.cpp -------------------------------------------------------------------------------- /QZXing/zxing/bigint/BigInteger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/bigint/BigInteger.cc -------------------------------------------------------------------------------- /QZXing/zxing/bigint/BigInteger.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/bigint/BigInteger.hh -------------------------------------------------------------------------------- /QZXing/zxing/bigint/BigIntegerAlgorithms.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/bigint/BigIntegerAlgorithms.cc -------------------------------------------------------------------------------- /QZXing/zxing/bigint/BigIntegerAlgorithms.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/bigint/BigIntegerAlgorithms.hh -------------------------------------------------------------------------------- /QZXing/zxing/bigint/BigIntegerLibrary.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/bigint/BigIntegerLibrary.hh -------------------------------------------------------------------------------- /QZXing/zxing/bigint/BigIntegerUtils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/bigint/BigIntegerUtils.cc -------------------------------------------------------------------------------- /QZXing/zxing/bigint/BigIntegerUtils.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/bigint/BigIntegerUtils.hh -------------------------------------------------------------------------------- /QZXing/zxing/bigint/BigUnsigned.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/bigint/BigUnsigned.cc -------------------------------------------------------------------------------- /QZXing/zxing/bigint/BigUnsigned.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/bigint/BigUnsigned.hh -------------------------------------------------------------------------------- /QZXing/zxing/bigint/BigUnsignedInABase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/bigint/BigUnsignedInABase.cc -------------------------------------------------------------------------------- /QZXing/zxing/bigint/BigUnsignedInABase.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/bigint/BigUnsignedInABase.hh -------------------------------------------------------------------------------- /QZXing/zxing/bigint/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/bigint/ChangeLog -------------------------------------------------------------------------------- /QZXing/zxing/bigint/NumberlikeArray.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/bigint/NumberlikeArray.hh -------------------------------------------------------------------------------- /QZXing/zxing/bigint/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/bigint/README -------------------------------------------------------------------------------- /QZXing/zxing/win32/zxing/iconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/win32/zxing/iconv.h -------------------------------------------------------------------------------- /QZXing/zxing/win32/zxing/msvc/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/win32/zxing/msvc/stdint.h -------------------------------------------------------------------------------- /QZXing/zxing/win32/zxing/win_iconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/win32/zxing/win_iconv.c -------------------------------------------------------------------------------- /QZXing/zxing/zxing/BarcodeFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/BarcodeFormat.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/BarcodeFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/BarcodeFormat.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/Binarizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/Binarizer.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/Binarizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/Binarizer.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/BinaryBitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/BinaryBitmap.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/BinaryBitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/BinaryBitmap.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/ChecksumException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/ChecksumException.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/ChecksumException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/ChecksumException.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/DecodeHints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/DecodeHints.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/DecodeHints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/DecodeHints.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/Exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/Exception.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/Exception.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/FormatException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/FormatException.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/FormatException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/FormatException.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/IllegalStateException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/IllegalStateException.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/InvertedLuminanceSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/InvertedLuminanceSource.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/InvertedLuminanceSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/InvertedLuminanceSource.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/LuminanceSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/LuminanceSource.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/LuminanceSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/LuminanceSource.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/MultiFormatReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/MultiFormatReader.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/MultiFormatReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/MultiFormatReader.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/NotFoundException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/NotFoundException.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/Reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/Reader.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/Reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/Reader.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/ReaderException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/ReaderException.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/Result.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/Result.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/Result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/Result.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/ResultIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/ResultIO.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/ResultPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/ResultPoint.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/ResultPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/ResultPoint.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/ResultPointCallback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/ResultPointCallback.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/ResultPointCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/ResultPointCallback.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/WriterException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/WriterException.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/ZXing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/ZXing.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/aztec/AztecDetectorResult.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/aztec/AztecDetectorResult.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/aztec/AztecDetectorResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/aztec/AztecDetectorResult.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/aztec/AztecReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/aztec/AztecReader.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/aztec/AztecReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/aztec/AztecReader.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/aztec/decoder/AztecDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/aztec/decoder/AztecDecoder.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/aztec/decoder/Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/aztec/decoder/Decoder.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/aztec/detector/AztecDetector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/aztec/detector/AztecDetector.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/aztec/detector/Detector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/aztec/detector/Detector.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/common/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/common/Array.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/common/BitArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/common/BitArray.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/common/BitArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/common/BitArray.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/common/BitArrayIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/common/BitArrayIO.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/common/BitMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/common/BitMatrix.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/common/BitMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/common/BitMatrix.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/common/BitSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/common/BitSource.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/common/BitSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/common/BitSource.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/common/CharacterSetECI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/common/CharacterSetECI.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/common/CharacterSetECI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/common/CharacterSetECI.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/common/Counted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/common/Counted.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/common/DecoderResult.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/common/DecoderResult.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/common/DecoderResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/common/DecoderResult.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/common/DetectorResult.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/common/DetectorResult.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/common/DetectorResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/common/DetectorResult.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/common/GlobalHistogramBinarizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/common/GlobalHistogramBinarizer.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/common/GlobalHistogramBinarizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/common/GlobalHistogramBinarizer.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/common/GreyscaleLuminanceSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/common/GreyscaleLuminanceSource.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/common/GreyscaleLuminanceSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/common/GreyscaleLuminanceSource.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/common/GreyscaleRotatedLuminanceSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/common/GreyscaleRotatedLuminanceSource.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/common/GreyscaleRotatedLuminanceSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/common/GreyscaleRotatedLuminanceSource.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/common/GridSampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/common/GridSampler.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/common/GridSampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/common/GridSampler.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/common/HybridBinarizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/common/HybridBinarizer.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/common/HybridBinarizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/common/HybridBinarizer.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/common/IllegalArgumentException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/common/IllegalArgumentException.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/common/IllegalArgumentException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/common/IllegalArgumentException.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/common/PerspectiveTransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/common/PerspectiveTransform.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/common/PerspectiveTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/common/PerspectiveTransform.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/common/Point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/common/Point.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/common/Str.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/common/Str.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/common/Str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/common/Str.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/common/StringUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/common/StringUtils.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/common/StringUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/common/StringUtils.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/common/detector/JavaMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/common/detector/JavaMath.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/common/detector/MathUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/common/detector/MathUtils.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/common/detector/MonochromeRectangleDetector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/common/detector/MonochromeRectangleDetector.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/common/detector/MonochromeRectangleDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/common/detector/MonochromeRectangleDetector.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/common/detector/WhiteRectangleDetector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/common/detector/WhiteRectangleDetector.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/common/detector/WhiteRectangleDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/common/detector/WhiteRectangleDetector.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/common/reedsolomon/GenericGF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/common/reedsolomon/GenericGF.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/common/reedsolomon/GenericGF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/common/reedsolomon/GenericGF.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/common/reedsolomon/GenericGFPoly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/common/reedsolomon/GenericGFPoly.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/common/reedsolomon/GenericGFPoly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/common/reedsolomon/GenericGFPoly.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/common/reedsolomon/ReedSolomonDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/common/reedsolomon/ReedSolomonDecoder.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/common/reedsolomon/ReedSolomonDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/common/reedsolomon/ReedSolomonDecoder.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/common/reedsolomon/ReedSolomonException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/common/reedsolomon/ReedSolomonException.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/common/reedsolomon/ReedSolomonException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/common/reedsolomon/ReedSolomonException.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/datamatrix/DataMatrixReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/datamatrix/DataMatrixReader.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/datamatrix/DataMatrixReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/datamatrix/DataMatrixReader.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/datamatrix/DataMatrixVersion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/datamatrix/DataMatrixVersion.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/datamatrix/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/datamatrix/Version.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/datamatrix/decoder/BitMatrixParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/datamatrix/decoder/BitMatrixParser.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/datamatrix/decoder/DataBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/datamatrix/decoder/DataBlock.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/datamatrix/decoder/DataMatrixBitMatrixParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/datamatrix/decoder/DataMatrixBitMatrixParser.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/datamatrix/decoder/DataMatrixDataBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/datamatrix/decoder/DataMatrixDataBlock.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/datamatrix/decoder/DataMatrixDecodedBitStreamParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/datamatrix/decoder/DataMatrixDecodedBitStreamParser.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/datamatrix/decoder/DataMatrixDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/datamatrix/decoder/DataMatrixDecoder.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/datamatrix/decoder/DecodedBitStreamParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/datamatrix/decoder/DecodedBitStreamParser.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/datamatrix/decoder/Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/datamatrix/decoder/Decoder.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/datamatrix/detector/CornerPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/datamatrix/detector/CornerPoint.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/datamatrix/detector/DataMatrixCornerPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/datamatrix/detector/DataMatrixCornerPoint.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/datamatrix/detector/DataMatrixDetector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/datamatrix/detector/DataMatrixDetector.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/datamatrix/detector/DataMatrixDetectorException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/datamatrix/detector/DataMatrixDetectorException.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/datamatrix/detector/Detector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/datamatrix/detector/Detector.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/datamatrix/detector/DetectorException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/datamatrix/detector/DetectorException.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/multi/ByQuadrantReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/multi/ByQuadrantReader.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/multi/ByQuadrantReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/multi/ByQuadrantReader.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/multi/GenericMultipleBarcodeReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/multi/GenericMultipleBarcodeReader.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/multi/GenericMultipleBarcodeReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/multi/GenericMultipleBarcodeReader.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/multi/MultipleBarcodeReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/multi/MultipleBarcodeReader.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/multi/MultipleBarcodeReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/multi/MultipleBarcodeReader.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/multi/qrcode/QRCodeMultiReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/multi/qrcode/QRCodeMultiReader.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/multi/qrcode/QRCodeMultiReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/multi/qrcode/QRCodeMultiReader.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/multi/qrcode/detector/MultiDetector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/multi/qrcode/detector/MultiDetector.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/multi/qrcode/detector/MultiDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/multi/qrcode/detector/MultiDetector.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/multi/qrcode/detector/MultiFinderPatternFinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/multi/qrcode/detector/MultiFinderPatternFinder.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/multi/qrcode/detector/MultiFinderPatternFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/multi/qrcode/detector/MultiFinderPatternFinder.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/oned/CodaBarReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/oned/CodaBarReader.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/oned/CodaBarReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/oned/CodaBarReader.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/oned/Code128Reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/oned/Code128Reader.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/oned/Code128Reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/oned/Code128Reader.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/oned/Code39Reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/oned/Code39Reader.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/oned/Code39Reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/oned/Code39Reader.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/oned/Code93Reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/oned/Code93Reader.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/oned/Code93Reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/oned/Code93Reader.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/oned/EAN13Reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/oned/EAN13Reader.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/oned/EAN13Reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/oned/EAN13Reader.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/oned/EAN8Reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/oned/EAN8Reader.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/oned/EAN8Reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/oned/EAN8Reader.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/oned/ITFReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/oned/ITFReader.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/oned/ITFReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/oned/ITFReader.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/oned/MultiFormatOneDReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/oned/MultiFormatOneDReader.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/oned/MultiFormatOneDReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/oned/MultiFormatOneDReader.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/oned/MultiFormatUPCEANReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/oned/MultiFormatUPCEANReader.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/oned/MultiFormatUPCEANReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/oned/MultiFormatUPCEANReader.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/oned/OneDReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/oned/OneDReader.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/oned/OneDReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/oned/OneDReader.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/oned/OneDResultPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/oned/OneDResultPoint.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/oned/OneDResultPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/oned/OneDResultPoint.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/oned/UPCAReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/oned/UPCAReader.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/oned/UPCAReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/oned/UPCAReader.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/oned/UPCEANReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/oned/UPCEANReader.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/oned/UPCEANReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/oned/UPCEANReader.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/oned/UPCEReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/oned/UPCEReader.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/oned/UPCEReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/oned/UPCEReader.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/pdf417/PDF417Reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/pdf417/PDF417Reader.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/pdf417/PDF417Reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/pdf417/PDF417Reader.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/pdf417/decoder/BitMatrixParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/pdf417/decoder/BitMatrixParser.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/pdf417/decoder/DecodedBitStreamParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/pdf417/decoder/DecodedBitStreamParser.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/pdf417/decoder/Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/pdf417/decoder/Decoder.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/pdf417/decoder/PDF417BitMatrixParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/pdf417/decoder/PDF417BitMatrixParser.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/pdf417/decoder/PDF417DecodedBitStreamParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/pdf417/decoder/PDF417DecodedBitStreamParser.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/pdf417/decoder/PDF417Decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/pdf417/decoder/PDF417Decoder.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/pdf417/decoder/ec/ErrorCorrection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/pdf417/decoder/ec/ErrorCorrection.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/pdf417/decoder/ec/ErrorCorrection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/pdf417/decoder/ec/ErrorCorrection.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/pdf417/decoder/ec/ModulusGF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/pdf417/decoder/ec/ModulusGF.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/pdf417/decoder/ec/ModulusGF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/pdf417/decoder/ec/ModulusGF.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/pdf417/decoder/ec/ModulusPoly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/pdf417/decoder/ec/ModulusPoly.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/pdf417/decoder/ec/ModulusPoly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/pdf417/decoder/ec/ModulusPoly.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/pdf417/detector/Detector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/pdf417/detector/Detector.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/pdf417/detector/LinesSampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/pdf417/detector/LinesSampler.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/pdf417/detector/LinesSampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/pdf417/detector/LinesSampler.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/pdf417/detector/PDF417Detector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/pdf417/detector/PDF417Detector.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/qrcode/ErrorCorrectionLevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/qrcode/ErrorCorrectionLevel.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/qrcode/FormatInformation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/qrcode/FormatInformation.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/qrcode/QRCodeReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/qrcode/QRCodeReader.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/qrcode/QRCodeReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/qrcode/QRCodeReader.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/qrcode/QRErrorCorrectionLevel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/qrcode/QRErrorCorrectionLevel.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/qrcode/QRFormatInformation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/qrcode/QRFormatInformation.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/qrcode/QRVersion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/qrcode/QRVersion.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/qrcode/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/qrcode/Version.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/qrcode/decoder/BitMatrixParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/qrcode/decoder/BitMatrixParser.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/qrcode/decoder/DataBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/qrcode/decoder/DataBlock.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/qrcode/decoder/DataMask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/qrcode/decoder/DataMask.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/qrcode/decoder/DecodedBitStreamParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/qrcode/decoder/DecodedBitStreamParser.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/qrcode/decoder/Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/qrcode/decoder/Decoder.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/qrcode/decoder/Mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/qrcode/decoder/Mode.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/qrcode/decoder/QRBitMatrixParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/qrcode/decoder/QRBitMatrixParser.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/qrcode/decoder/QRDataBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/qrcode/decoder/QRDataBlock.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/qrcode/decoder/QRDataMask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/qrcode/decoder/QRDataMask.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/qrcode/decoder/QRDecodedBitStreamParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/qrcode/decoder/QRDecodedBitStreamParser.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/qrcode/decoder/QRDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/qrcode/decoder/QRDecoder.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/qrcode/decoder/QRMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/qrcode/decoder/QRMode.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/qrcode/detector/AlignmentPattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/qrcode/detector/AlignmentPattern.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/qrcode/detector/AlignmentPatternFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/qrcode/detector/AlignmentPatternFinder.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/qrcode/detector/Detector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/qrcode/detector/Detector.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/qrcode/detector/FinderPattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/qrcode/detector/FinderPattern.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/qrcode/detector/FinderPatternFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/qrcode/detector/FinderPatternFinder.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/qrcode/detector/FinderPatternInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/qrcode/detector/FinderPatternInfo.h -------------------------------------------------------------------------------- /QZXing/zxing/zxing/qrcode/detector/QRAlignmentPattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/qrcode/detector/QRAlignmentPattern.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/qrcode/detector/QRAlignmentPatternFinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/qrcode/detector/QRAlignmentPatternFinder.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/qrcode/detector/QRDetector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/qrcode/detector/QRDetector.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/qrcode/detector/QRFinderPattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/qrcode/detector/QRFinderPattern.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/qrcode/detector/QRFinderPatternFinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/qrcode/detector/QRFinderPatternFinder.cpp -------------------------------------------------------------------------------- /QZXing/zxing/zxing/qrcode/detector/QRFinderPatternInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/QZXing/zxing/zxing/qrcode/detector/QRFinderPatternInfo.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/README.md -------------------------------------------------------------------------------- /src/BillDownloader.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/src/BillDownloader.pro -------------------------------------------------------------------------------- /src/cnetclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/src/cnetclient.cpp -------------------------------------------------------------------------------- /src/cnetclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/src/cnetclient.h -------------------------------------------------------------------------------- /src/cwimage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/src/cwimage.cpp -------------------------------------------------------------------------------- /src/cwimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/src/cwimage.h -------------------------------------------------------------------------------- /src/dialogcopytext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/src/dialogcopytext.cpp -------------------------------------------------------------------------------- /src/dialogcopytext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/src/dialogcopytext.h -------------------------------------------------------------------------------- /src/dialogcopytext.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/src/dialogcopytext.ui -------------------------------------------------------------------------------- /src/dialogscanreceipt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/src/dialogscanreceipt.cpp -------------------------------------------------------------------------------- /src/dialogscanreceipt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/src/dialogscanreceipt.h -------------------------------------------------------------------------------- /src/dialogscanreceipt.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/src/dialogscanreceipt.ui -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/src/mainwindow.cpp -------------------------------------------------------------------------------- /src/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/src/mainwindow.h -------------------------------------------------------------------------------- /src/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Allexin/BillDownloader/HEAD/src/mainwindow.ui --------------------------------------------------------------------------------