├── .gitattributes ├── .gitignore ├── LICENSE.md ├── README.md ├── Source └── DelphiZXIngQRCode.pas └── TestApp ├── DelphiZXingQRCodeTestApp.dpr ├── DelphiZXingQRCodeTestApp.dproj ├── DelphiZXingQRCodeTestApp.res ├── DelphiZXingQRCodeTestAppMainForm.dfm └── DelphiZXingQRCodeTestAppMainForm.pas /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxitsoftware/DelphiZXingQRCode/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxitsoftware/DelphiZXingQRCode/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxitsoftware/DelphiZXingQRCode/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxitsoftware/DelphiZXingQRCode/HEAD/README.md -------------------------------------------------------------------------------- /Source/DelphiZXIngQRCode.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxitsoftware/DelphiZXingQRCode/HEAD/Source/DelphiZXIngQRCode.pas -------------------------------------------------------------------------------- /TestApp/DelphiZXingQRCodeTestApp.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxitsoftware/DelphiZXingQRCode/HEAD/TestApp/DelphiZXingQRCodeTestApp.dpr -------------------------------------------------------------------------------- /TestApp/DelphiZXingQRCodeTestApp.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxitsoftware/DelphiZXingQRCode/HEAD/TestApp/DelphiZXingQRCodeTestApp.dproj -------------------------------------------------------------------------------- /TestApp/DelphiZXingQRCodeTestApp.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxitsoftware/DelphiZXingQRCode/HEAD/TestApp/DelphiZXingQRCodeTestApp.res -------------------------------------------------------------------------------- /TestApp/DelphiZXingQRCodeTestAppMainForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxitsoftware/DelphiZXingQRCode/HEAD/TestApp/DelphiZXingQRCodeTestAppMainForm.dfm -------------------------------------------------------------------------------- /TestApp/DelphiZXingQRCodeTestAppMainForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxitsoftware/DelphiZXingQRCode/HEAD/TestApp/DelphiZXingQRCodeTestAppMainForm.pas --------------------------------------------------------------------------------