├── LICENSE ├── QRCODE ├── QRCODE.cbp ├── QRCODE.depend ├── QRCODE.layout ├── doc │ └── qr_code.pdf ├── include │ ├── QRController.h │ ├── bitmap │ │ ├── Bitmap.h │ │ └── Colors.h │ ├── drawable │ │ ├── QRBitmapDraw.h │ │ └── QRDrawable.h │ ├── enums │ │ ├── enumCorrectionLevel.h │ │ ├── enumMode.h │ │ └── enumVersions.h │ ├── exceptions │ │ ├── EQRCapabilities.h │ │ ├── EQRDimension.h │ │ ├── EQRErrorCorrection.h │ │ └── EQRGeneric.h │ ├── masks │ │ ├── QRMask.h │ │ ├── QRMask1.h │ │ ├── QRMask2.h │ │ ├── QRMask3.h │ │ ├── QRMask4.h │ │ ├── QRMask5.h │ │ ├── QRMask6.h │ │ ├── QRMask7.h │ │ └── QRMask8.h │ ├── polynomial_generator │ │ ├── LogAntilog.h │ │ ├── Monomial.h │ │ └── PolynomialGenerator.h │ ├── qrcode │ │ ├── QRCode.h │ │ ├── QRCodeV1.h │ │ ├── QRCodeV10.h │ │ ├── QRCodeV11.h │ │ ├── QRCodeV12.h │ │ ├── QRCodeV13.h │ │ ├── QRCodeV14.h │ │ ├── QRCodeV15.h │ │ ├── QRCodeV16.h │ │ ├── QRCodeV17.h │ │ ├── QRCodeV18.h │ │ ├── QRCodeV19.h │ │ ├── QRCodeV2.h │ │ ├── QRCodeV20.h │ │ ├── QRCodeV21.h │ │ ├── QRCodeV22.h │ │ ├── QRCodeV23.h │ │ ├── QRCodeV24.h │ │ ├── QRCodeV25.h │ │ ├── QRCodeV26.h │ │ ├── QRCodeV27.h │ │ ├── QRCodeV28.h │ │ ├── QRCodeV29.h │ │ ├── QRCodeV3.h │ │ ├── QRCodeV30.h │ │ ├── QRCodeV31.h │ │ ├── QRCodeV32.h │ │ ├── QRCodeV33.h │ │ ├── QRCodeV34.h │ │ ├── QRCodeV35.h │ │ ├── QRCodeV36.h │ │ ├── QRCodeV37.h │ │ ├── QRCodeV38.h │ │ ├── QRCodeV39.h │ │ ├── QRCodeV4.h │ │ ├── QRCodeV40.h │ │ ├── QRCodeV5.h │ │ ├── QRCodeV6.h │ │ ├── QRCodeV7.h │ │ ├── QRCodeV8.h │ │ └── QRCodeV9.h │ ├── struct │ │ ├── StructECInfo.h │ │ └── StructPoint.h │ └── test │ │ └── output_test.h ├── main.cpp └── src │ ├── QRController.cpp │ ├── bitmap │ └── Bitmap.cpp │ ├── drawable │ ├── QRBitmapDraw.cpp │ └── QRDrawable.cpp │ ├── exceptions │ ├── EQRCapabilities.cpp │ ├── EQRDimension.cpp │ ├── EQRErrorCorrection.cpp │ └── EQRGeneric.cpp │ ├── masks │ ├── QRMask.cpp │ ├── QRMask1.cpp │ ├── QRMask2.cpp │ ├── QRMask3.cpp │ ├── QRMask4.cpp │ ├── QRMask5.cpp │ ├── QRMask6.cpp │ ├── QRMask7.cpp │ └── QRMask8.cpp │ ├── polynomial_generator │ ├── Monomial.cpp │ └── PolynomialGenerator.cpp │ ├── qrcode │ ├── QRCode.cpp │ ├── QRCodeV1.cpp │ ├── QRCodeV10.cpp │ ├── QRCodeV11.cpp │ ├── QRCodeV12.cpp │ ├── QRCodeV13.cpp │ ├── QRCodeV14.cpp │ ├── QRCodeV15.cpp │ ├── QRCodeV16.cpp │ ├── QRCodeV17.cpp │ ├── QRCodeV18.cpp │ ├── QRCodeV19.cpp │ ├── QRCodeV2.cpp │ ├── QRCodeV20.cpp │ ├── QRCodeV21.cpp │ ├── QRCodeV22.cpp │ ├── QRCodeV23.cpp │ ├── QRCodeV24.cpp │ ├── QRCodeV25.cpp │ ├── QRCodeV26.cpp │ ├── QRCodeV27.cpp │ ├── QRCodeV28.cpp │ ├── QRCodeV29.cpp │ ├── QRCodeV3.cpp │ ├── QRCodeV30.cpp │ ├── QRCodeV31.cpp │ ├── QRCodeV32.cpp │ ├── QRCodeV33.cpp │ ├── QRCodeV34.cpp │ ├── QRCodeV35.cpp │ ├── QRCodeV36.cpp │ ├── QRCodeV37.cpp │ ├── QRCodeV38.cpp │ ├── QRCodeV39.cpp │ ├── QRCodeV4.cpp │ ├── QRCodeV40.cpp │ ├── QRCodeV5.cpp │ ├── QRCodeV6.cpp │ ├── QRCodeV7.cpp │ ├── QRCodeV8.cpp │ └── QRCodeV9.cpp │ └── test │ └── output_test.cpp ├── QRCode.class.violet.html └── README.md /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/LICENSE -------------------------------------------------------------------------------- /QRCODE/QRCODE.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/QRCODE.cbp -------------------------------------------------------------------------------- /QRCODE/QRCODE.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/QRCODE.depend -------------------------------------------------------------------------------- /QRCODE/QRCODE.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/QRCODE.layout -------------------------------------------------------------------------------- /QRCODE/doc/qr_code.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/doc/qr_code.pdf -------------------------------------------------------------------------------- /QRCODE/include/QRController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/QRController.h -------------------------------------------------------------------------------- /QRCODE/include/bitmap/Bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/bitmap/Bitmap.h -------------------------------------------------------------------------------- /QRCODE/include/bitmap/Colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/bitmap/Colors.h -------------------------------------------------------------------------------- /QRCODE/include/drawable/QRBitmapDraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/drawable/QRBitmapDraw.h -------------------------------------------------------------------------------- /QRCODE/include/drawable/QRDrawable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/drawable/QRDrawable.h -------------------------------------------------------------------------------- /QRCODE/include/enums/enumCorrectionLevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/enums/enumCorrectionLevel.h -------------------------------------------------------------------------------- /QRCODE/include/enums/enumMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/enums/enumMode.h -------------------------------------------------------------------------------- /QRCODE/include/enums/enumVersions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/enums/enumVersions.h -------------------------------------------------------------------------------- /QRCODE/include/exceptions/EQRCapabilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/exceptions/EQRCapabilities.h -------------------------------------------------------------------------------- /QRCODE/include/exceptions/EQRDimension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/exceptions/EQRDimension.h -------------------------------------------------------------------------------- /QRCODE/include/exceptions/EQRErrorCorrection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/exceptions/EQRErrorCorrection.h -------------------------------------------------------------------------------- /QRCODE/include/exceptions/EQRGeneric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/exceptions/EQRGeneric.h -------------------------------------------------------------------------------- /QRCODE/include/masks/QRMask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/masks/QRMask.h -------------------------------------------------------------------------------- /QRCODE/include/masks/QRMask1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/masks/QRMask1.h -------------------------------------------------------------------------------- /QRCODE/include/masks/QRMask2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/masks/QRMask2.h -------------------------------------------------------------------------------- /QRCODE/include/masks/QRMask3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/masks/QRMask3.h -------------------------------------------------------------------------------- /QRCODE/include/masks/QRMask4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/masks/QRMask4.h -------------------------------------------------------------------------------- /QRCODE/include/masks/QRMask5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/masks/QRMask5.h -------------------------------------------------------------------------------- /QRCODE/include/masks/QRMask6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/masks/QRMask6.h -------------------------------------------------------------------------------- /QRCODE/include/masks/QRMask7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/masks/QRMask7.h -------------------------------------------------------------------------------- /QRCODE/include/masks/QRMask8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/masks/QRMask8.h -------------------------------------------------------------------------------- /QRCODE/include/polynomial_generator/LogAntilog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/polynomial_generator/LogAntilog.h -------------------------------------------------------------------------------- /QRCODE/include/polynomial_generator/Monomial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/polynomial_generator/Monomial.h -------------------------------------------------------------------------------- /QRCODE/include/polynomial_generator/PolynomialGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/polynomial_generator/PolynomialGenerator.h -------------------------------------------------------------------------------- /QRCODE/include/qrcode/QRCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/qrcode/QRCode.h -------------------------------------------------------------------------------- /QRCODE/include/qrcode/QRCodeV1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/qrcode/QRCodeV1.h -------------------------------------------------------------------------------- /QRCODE/include/qrcode/QRCodeV10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/qrcode/QRCodeV10.h -------------------------------------------------------------------------------- /QRCODE/include/qrcode/QRCodeV11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/qrcode/QRCodeV11.h -------------------------------------------------------------------------------- /QRCODE/include/qrcode/QRCodeV12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/qrcode/QRCodeV12.h -------------------------------------------------------------------------------- /QRCODE/include/qrcode/QRCodeV13.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/qrcode/QRCodeV13.h -------------------------------------------------------------------------------- /QRCODE/include/qrcode/QRCodeV14.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/qrcode/QRCodeV14.h -------------------------------------------------------------------------------- /QRCODE/include/qrcode/QRCodeV15.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/qrcode/QRCodeV15.h -------------------------------------------------------------------------------- /QRCODE/include/qrcode/QRCodeV16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/qrcode/QRCodeV16.h -------------------------------------------------------------------------------- /QRCODE/include/qrcode/QRCodeV17.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/qrcode/QRCodeV17.h -------------------------------------------------------------------------------- /QRCODE/include/qrcode/QRCodeV18.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/qrcode/QRCodeV18.h -------------------------------------------------------------------------------- /QRCODE/include/qrcode/QRCodeV19.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/qrcode/QRCodeV19.h -------------------------------------------------------------------------------- /QRCODE/include/qrcode/QRCodeV2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/qrcode/QRCodeV2.h -------------------------------------------------------------------------------- /QRCODE/include/qrcode/QRCodeV20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/qrcode/QRCodeV20.h -------------------------------------------------------------------------------- /QRCODE/include/qrcode/QRCodeV21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/qrcode/QRCodeV21.h -------------------------------------------------------------------------------- /QRCODE/include/qrcode/QRCodeV22.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/qrcode/QRCodeV22.h -------------------------------------------------------------------------------- /QRCODE/include/qrcode/QRCodeV23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/qrcode/QRCodeV23.h -------------------------------------------------------------------------------- /QRCODE/include/qrcode/QRCodeV24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/qrcode/QRCodeV24.h -------------------------------------------------------------------------------- /QRCODE/include/qrcode/QRCodeV25.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/qrcode/QRCodeV25.h -------------------------------------------------------------------------------- /QRCODE/include/qrcode/QRCodeV26.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/qrcode/QRCodeV26.h -------------------------------------------------------------------------------- /QRCODE/include/qrcode/QRCodeV27.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/qrcode/QRCodeV27.h -------------------------------------------------------------------------------- /QRCODE/include/qrcode/QRCodeV28.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/qrcode/QRCodeV28.h -------------------------------------------------------------------------------- /QRCODE/include/qrcode/QRCodeV29.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/qrcode/QRCodeV29.h -------------------------------------------------------------------------------- /QRCODE/include/qrcode/QRCodeV3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/qrcode/QRCodeV3.h -------------------------------------------------------------------------------- /QRCODE/include/qrcode/QRCodeV30.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/qrcode/QRCodeV30.h -------------------------------------------------------------------------------- /QRCODE/include/qrcode/QRCodeV31.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/qrcode/QRCodeV31.h -------------------------------------------------------------------------------- /QRCODE/include/qrcode/QRCodeV32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/qrcode/QRCodeV32.h -------------------------------------------------------------------------------- /QRCODE/include/qrcode/QRCodeV33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/qrcode/QRCodeV33.h -------------------------------------------------------------------------------- /QRCODE/include/qrcode/QRCodeV34.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/qrcode/QRCodeV34.h -------------------------------------------------------------------------------- /QRCODE/include/qrcode/QRCodeV35.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/qrcode/QRCodeV35.h -------------------------------------------------------------------------------- /QRCODE/include/qrcode/QRCodeV36.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/qrcode/QRCodeV36.h -------------------------------------------------------------------------------- /QRCODE/include/qrcode/QRCodeV37.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/qrcode/QRCodeV37.h -------------------------------------------------------------------------------- /QRCODE/include/qrcode/QRCodeV38.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/qrcode/QRCodeV38.h -------------------------------------------------------------------------------- /QRCODE/include/qrcode/QRCodeV39.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/qrcode/QRCodeV39.h -------------------------------------------------------------------------------- /QRCODE/include/qrcode/QRCodeV4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/qrcode/QRCodeV4.h -------------------------------------------------------------------------------- /QRCODE/include/qrcode/QRCodeV40.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/qrcode/QRCodeV40.h -------------------------------------------------------------------------------- /QRCODE/include/qrcode/QRCodeV5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/qrcode/QRCodeV5.h -------------------------------------------------------------------------------- /QRCODE/include/qrcode/QRCodeV6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/qrcode/QRCodeV6.h -------------------------------------------------------------------------------- /QRCODE/include/qrcode/QRCodeV7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/qrcode/QRCodeV7.h -------------------------------------------------------------------------------- /QRCODE/include/qrcode/QRCodeV8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/qrcode/QRCodeV8.h -------------------------------------------------------------------------------- /QRCODE/include/qrcode/QRCodeV9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/qrcode/QRCodeV9.h -------------------------------------------------------------------------------- /QRCODE/include/struct/StructECInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/struct/StructECInfo.h -------------------------------------------------------------------------------- /QRCODE/include/struct/StructPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/struct/StructPoint.h -------------------------------------------------------------------------------- /QRCODE/include/test/output_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/include/test/output_test.h -------------------------------------------------------------------------------- /QRCODE/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/main.cpp -------------------------------------------------------------------------------- /QRCODE/src/QRController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/QRController.cpp -------------------------------------------------------------------------------- /QRCODE/src/bitmap/Bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/bitmap/Bitmap.cpp -------------------------------------------------------------------------------- /QRCODE/src/drawable/QRBitmapDraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/drawable/QRBitmapDraw.cpp -------------------------------------------------------------------------------- /QRCODE/src/drawable/QRDrawable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/drawable/QRDrawable.cpp -------------------------------------------------------------------------------- /QRCODE/src/exceptions/EQRCapabilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/exceptions/EQRCapabilities.cpp -------------------------------------------------------------------------------- /QRCODE/src/exceptions/EQRDimension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/exceptions/EQRDimension.cpp -------------------------------------------------------------------------------- /QRCODE/src/exceptions/EQRErrorCorrection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/exceptions/EQRErrorCorrection.cpp -------------------------------------------------------------------------------- /QRCODE/src/exceptions/EQRGeneric.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/exceptions/EQRGeneric.cpp -------------------------------------------------------------------------------- /QRCODE/src/masks/QRMask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/masks/QRMask.cpp -------------------------------------------------------------------------------- /QRCODE/src/masks/QRMask1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/masks/QRMask1.cpp -------------------------------------------------------------------------------- /QRCODE/src/masks/QRMask2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/masks/QRMask2.cpp -------------------------------------------------------------------------------- /QRCODE/src/masks/QRMask3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/masks/QRMask3.cpp -------------------------------------------------------------------------------- /QRCODE/src/masks/QRMask4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/masks/QRMask4.cpp -------------------------------------------------------------------------------- /QRCODE/src/masks/QRMask5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/masks/QRMask5.cpp -------------------------------------------------------------------------------- /QRCODE/src/masks/QRMask6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/masks/QRMask6.cpp -------------------------------------------------------------------------------- /QRCODE/src/masks/QRMask7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/masks/QRMask7.cpp -------------------------------------------------------------------------------- /QRCODE/src/masks/QRMask8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/masks/QRMask8.cpp -------------------------------------------------------------------------------- /QRCODE/src/polynomial_generator/Monomial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/polynomial_generator/Monomial.cpp -------------------------------------------------------------------------------- /QRCODE/src/polynomial_generator/PolynomialGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/polynomial_generator/PolynomialGenerator.cpp -------------------------------------------------------------------------------- /QRCODE/src/qrcode/QRCode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/qrcode/QRCode.cpp -------------------------------------------------------------------------------- /QRCODE/src/qrcode/QRCodeV1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/qrcode/QRCodeV1.cpp -------------------------------------------------------------------------------- /QRCODE/src/qrcode/QRCodeV10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/qrcode/QRCodeV10.cpp -------------------------------------------------------------------------------- /QRCODE/src/qrcode/QRCodeV11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/qrcode/QRCodeV11.cpp -------------------------------------------------------------------------------- /QRCODE/src/qrcode/QRCodeV12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/qrcode/QRCodeV12.cpp -------------------------------------------------------------------------------- /QRCODE/src/qrcode/QRCodeV13.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/qrcode/QRCodeV13.cpp -------------------------------------------------------------------------------- /QRCODE/src/qrcode/QRCodeV14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/qrcode/QRCodeV14.cpp -------------------------------------------------------------------------------- /QRCODE/src/qrcode/QRCodeV15.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/qrcode/QRCodeV15.cpp -------------------------------------------------------------------------------- /QRCODE/src/qrcode/QRCodeV16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/qrcode/QRCodeV16.cpp -------------------------------------------------------------------------------- /QRCODE/src/qrcode/QRCodeV17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/qrcode/QRCodeV17.cpp -------------------------------------------------------------------------------- /QRCODE/src/qrcode/QRCodeV18.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/qrcode/QRCodeV18.cpp -------------------------------------------------------------------------------- /QRCODE/src/qrcode/QRCodeV19.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/qrcode/QRCodeV19.cpp -------------------------------------------------------------------------------- /QRCODE/src/qrcode/QRCodeV2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/qrcode/QRCodeV2.cpp -------------------------------------------------------------------------------- /QRCODE/src/qrcode/QRCodeV20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/qrcode/QRCodeV20.cpp -------------------------------------------------------------------------------- /QRCODE/src/qrcode/QRCodeV21.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/qrcode/QRCodeV21.cpp -------------------------------------------------------------------------------- /QRCODE/src/qrcode/QRCodeV22.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/qrcode/QRCodeV22.cpp -------------------------------------------------------------------------------- /QRCODE/src/qrcode/QRCodeV23.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/qrcode/QRCodeV23.cpp -------------------------------------------------------------------------------- /QRCODE/src/qrcode/QRCodeV24.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/qrcode/QRCodeV24.cpp -------------------------------------------------------------------------------- /QRCODE/src/qrcode/QRCodeV25.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/qrcode/QRCodeV25.cpp -------------------------------------------------------------------------------- /QRCODE/src/qrcode/QRCodeV26.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/qrcode/QRCodeV26.cpp -------------------------------------------------------------------------------- /QRCODE/src/qrcode/QRCodeV27.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/qrcode/QRCodeV27.cpp -------------------------------------------------------------------------------- /QRCODE/src/qrcode/QRCodeV28.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/qrcode/QRCodeV28.cpp -------------------------------------------------------------------------------- /QRCODE/src/qrcode/QRCodeV29.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/qrcode/QRCodeV29.cpp -------------------------------------------------------------------------------- /QRCODE/src/qrcode/QRCodeV3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/qrcode/QRCodeV3.cpp -------------------------------------------------------------------------------- /QRCODE/src/qrcode/QRCodeV30.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/qrcode/QRCodeV30.cpp -------------------------------------------------------------------------------- /QRCODE/src/qrcode/QRCodeV31.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/qrcode/QRCodeV31.cpp -------------------------------------------------------------------------------- /QRCODE/src/qrcode/QRCodeV32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/qrcode/QRCodeV32.cpp -------------------------------------------------------------------------------- /QRCODE/src/qrcode/QRCodeV33.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/qrcode/QRCodeV33.cpp -------------------------------------------------------------------------------- /QRCODE/src/qrcode/QRCodeV34.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/qrcode/QRCodeV34.cpp -------------------------------------------------------------------------------- /QRCODE/src/qrcode/QRCodeV35.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/qrcode/QRCodeV35.cpp -------------------------------------------------------------------------------- /QRCODE/src/qrcode/QRCodeV36.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/qrcode/QRCodeV36.cpp -------------------------------------------------------------------------------- /QRCODE/src/qrcode/QRCodeV37.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/qrcode/QRCodeV37.cpp -------------------------------------------------------------------------------- /QRCODE/src/qrcode/QRCodeV38.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/qrcode/QRCodeV38.cpp -------------------------------------------------------------------------------- /QRCODE/src/qrcode/QRCodeV39.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/qrcode/QRCodeV39.cpp -------------------------------------------------------------------------------- /QRCODE/src/qrcode/QRCodeV4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/qrcode/QRCodeV4.cpp -------------------------------------------------------------------------------- /QRCODE/src/qrcode/QRCodeV40.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/qrcode/QRCodeV40.cpp -------------------------------------------------------------------------------- /QRCODE/src/qrcode/QRCodeV5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/qrcode/QRCodeV5.cpp -------------------------------------------------------------------------------- /QRCODE/src/qrcode/QRCodeV6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/qrcode/QRCodeV6.cpp -------------------------------------------------------------------------------- /QRCODE/src/qrcode/QRCodeV7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/qrcode/QRCodeV7.cpp -------------------------------------------------------------------------------- /QRCODE/src/qrcode/QRCodeV8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/qrcode/QRCodeV8.cpp -------------------------------------------------------------------------------- /QRCODE/src/qrcode/QRCodeV9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/qrcode/QRCodeV9.cpp -------------------------------------------------------------------------------- /QRCODE/src/test/output_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCODE/src/test/output_test.cpp -------------------------------------------------------------------------------- /QRCode.class.violet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/QRCode.class.violet.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackaroth/QRCODE/HEAD/README.md --------------------------------------------------------------------------------