From c1b0d96dad26e8bd30162ac7cdfa3f1d09ff16b6 Mon Sep 17 00:00:00 2001 From: "smparkes@smparkes.net" Date: Sun, 21 Apr 2013 15:48:21 +0000 Subject: [PATCH] xcode project file udpates and a portability fix git-svn-id: https://zxing.googlecode.com/svn/trunk@2670 59b500cc-1b3d-0410-9834-0bbf25fbcc57 --- .gitignore | 1 + cpp/core/src/bigint/BigUnsigned.hh | 6 +- cpp/core/src/bigint/BigUnsignedInABase.hh | 4 +- cpp/zxing-cpp.xcodeproj/project.pbxproj | 161 ++++++++++++++++++ .../ZXingWidget.xcodeproj/project.pbxproj | 160 +++++++++++++++++ 5 files changed, 327 insertions(+), 5 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..d392f0e82 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.jar diff --git a/cpp/core/src/bigint/BigUnsigned.hh b/cpp/core/src/bigint/BigUnsigned.hh index adf1c00bc..9228753c8 100644 --- a/cpp/core/src/bigint/BigUnsigned.hh +++ b/cpp/core/src/bigint/BigUnsigned.hh @@ -20,7 +20,7 @@ public: typedef unsigned long Blk; typedef NumberlikeArray::Index Index; - NumberlikeArray::N; + using NumberlikeArray::N; protected: // Creates a BigUnsigned with a capacity; for internal use. @@ -84,8 +84,8 @@ public: // BIT/BLOCK ACCESSORS // Expose these from NumberlikeArray directly. - NumberlikeArray::getCapacity; - NumberlikeArray::getLength; + using NumberlikeArray::getCapacity; + using NumberlikeArray::getLength; /* Returns the requested block, or 0 if it is beyond the length (as if * the number had 0s infinitely to the left). */ diff --git a/cpp/core/src/bigint/BigUnsignedInABase.hh b/cpp/core/src/bigint/BigUnsignedInABase.hh index 8f9bdcecf..0ea89c6ef 100644 --- a/cpp/core/src/bigint/BigUnsignedInABase.hh +++ b/cpp/core/src/bigint/BigUnsignedInABase.hh @@ -100,8 +100,8 @@ public: Base getBase() const { return base; } // Expose these from NumberlikeArray directly. - NumberlikeArray::getCapacity; - NumberlikeArray::getLength; + using NumberlikeArray::getCapacity; + using NumberlikeArray::getLength; /* Returns the requested digit, or 0 if it is beyond the length (as if * the number had 0s infinitely to the left). */ diff --git a/cpp/zxing-cpp.xcodeproj/project.pbxproj b/cpp/zxing-cpp.xcodeproj/project.pbxproj index 4092d5bb3..04d867997 100644 --- a/cpp/zxing-cpp.xcodeproj/project.pbxproj +++ b/cpp/zxing-cpp.xcodeproj/project.pbxproj @@ -180,6 +180,36 @@ 3B83EB0F158E679000A3B31F /* ResultPoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B83EA60158E679000A3B31F /* ResultPoint.h */; }; 3B83EB10158E679000A3B31F /* ResultPointCallback.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3B83EA61158E679000A3B31F /* ResultPointCallback.cpp */; }; 3B83EB11158E679000A3B31F /* ResultPointCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B83EA62158E679000A3B31F /* ResultPointCallback.h */; }; + 3BAC3A0D172430F000473974 /* BitMatrixParser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3BAC39F9172430F000473974 /* BitMatrixParser.cpp */; }; + 3BAC3A0E172430F000473974 /* BitMatrixParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BAC39FA172430F000473974 /* BitMatrixParser.h */; }; + 3BAC3A0F172430F000473974 /* DecodedBitStreamParser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3BAC39FB172430F000473974 /* DecodedBitStreamParser.cpp */; }; + 3BAC3A10172430F000473974 /* DecodedBitStreamParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BAC39FC172430F000473974 /* DecodedBitStreamParser.h */; }; + 3BAC3A11172430F000473974 /* Decoder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3BAC39FD172430F000473974 /* Decoder.cpp */; }; + 3BAC3A12172430F000473974 /* Decoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BAC39FE172430F000473974 /* Decoder.h */; }; + 3BAC3A13172430F000473974 /* ErrorCorrection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3BAC3A00172430F000473974 /* ErrorCorrection.cpp */; }; + 3BAC3A14172430F000473974 /* ErrorCorrection.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BAC3A01172430F000473974 /* ErrorCorrection.h */; }; + 3BAC3A15172430F000473974 /* ModulusGF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3BAC3A02172430F000473974 /* ModulusGF.cpp */; }; + 3BAC3A16172430F000473974 /* ModulusGF.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BAC3A03172430F000473974 /* ModulusGF.h */; }; + 3BAC3A17172430F000473974 /* ModulusPoly.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3BAC3A04172430F000473974 /* ModulusPoly.cpp */; }; + 3BAC3A18172430F000473974 /* ModulusPoly.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BAC3A05172430F000473974 /* ModulusPoly.h */; }; + 3BAC3A19172430F000473974 /* Detector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3BAC3A07172430F000473974 /* Detector.cpp */; }; + 3BAC3A1A172430F000473974 /* Detector.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BAC3A08172430F000473974 /* Detector.h */; }; + 3BAC3A1B172430F000473974 /* LinesSampler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3BAC3A09172430F000473974 /* LinesSampler.cpp */; }; + 3BAC3A1C172430F000473974 /* LinesSampler.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BAC3A0A172430F000473974 /* LinesSampler.h */; }; + 3BAC3A1D172430F000473974 /* PDF417Reader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3BAC3A0B172430F000473974 /* PDF417Reader.cpp */; }; + 3BAC3A1E172430F000473974 /* PDF417Reader.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BAC3A0C172430F000473974 /* PDF417Reader.h */; }; + 3BAC3A301724313500473974 /* BigInteger.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3BAC3A211724313500473974 /* BigInteger.cc */; }; + 3BAC3A311724313500473974 /* BigInteger.hh in Headers */ = {isa = PBXBuildFile; fileRef = 3BAC3A221724313500473974 /* BigInteger.hh */; }; + 3BAC3A321724313500473974 /* BigIntegerAlgorithms.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3BAC3A231724313500473974 /* BigIntegerAlgorithms.cc */; }; + 3BAC3A331724313500473974 /* BigIntegerAlgorithms.hh in Headers */ = {isa = PBXBuildFile; fileRef = 3BAC3A241724313500473974 /* BigIntegerAlgorithms.hh */; }; + 3BAC3A341724313500473974 /* BigIntegerLibrary.hh in Headers */ = {isa = PBXBuildFile; fileRef = 3BAC3A251724313500473974 /* BigIntegerLibrary.hh */; }; + 3BAC3A351724313500473974 /* BigIntegerUtils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3BAC3A261724313500473974 /* BigIntegerUtils.cc */; }; + 3BAC3A361724313500473974 /* BigIntegerUtils.hh in Headers */ = {isa = PBXBuildFile; fileRef = 3BAC3A271724313500473974 /* BigIntegerUtils.hh */; }; + 3BAC3A371724313500473974 /* BigUnsigned.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3BAC3A281724313500473974 /* BigUnsigned.cc */; }; + 3BAC3A381724313500473974 /* BigUnsigned.hh in Headers */ = {isa = PBXBuildFile; fileRef = 3BAC3A291724313500473974 /* BigUnsigned.hh */; }; + 3BAC3A391724313500473974 /* BigUnsignedInABase.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3BAC3A2A1724313500473974 /* BigUnsignedInABase.cc */; }; + 3BAC3A3A1724313500473974 /* BigUnsignedInABase.hh in Headers */ = {isa = PBXBuildFile; fileRef = 3BAC3A2B1724313500473974 /* BigUnsignedInABase.hh */; }; + 3BAC3A3C1724313500473974 /* NumberlikeArray.hh in Headers */ = {isa = PBXBuildFile; fileRef = 3BAC3A2E1724313500473974 /* NumberlikeArray.hh */; }; /* End PBXBuildFile section */ /* Begin PBXFileReference section */ @@ -358,6 +388,36 @@ 3B83EA60158E679000A3B31F /* ResultPoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ResultPoint.h; sourceTree = ""; }; 3B83EA61158E679000A3B31F /* ResultPointCallback.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ResultPointCallback.cpp; sourceTree = ""; }; 3B83EA62158E679000A3B31F /* ResultPointCallback.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ResultPointCallback.h; sourceTree = ""; }; + 3BAC39F9172430F000473974 /* BitMatrixParser.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BitMatrixParser.cpp; sourceTree = ""; }; + 3BAC39FA172430F000473974 /* BitMatrixParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BitMatrixParser.h; sourceTree = ""; }; + 3BAC39FB172430F000473974 /* DecodedBitStreamParser.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = DecodedBitStreamParser.cpp; sourceTree = ""; }; + 3BAC39FC172430F000473974 /* DecodedBitStreamParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DecodedBitStreamParser.h; sourceTree = ""; }; + 3BAC39FD172430F000473974 /* Decoder.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Decoder.cpp; sourceTree = ""; }; + 3BAC39FE172430F000473974 /* Decoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Decoder.h; sourceTree = ""; }; + 3BAC3A00172430F000473974 /* ErrorCorrection.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ErrorCorrection.cpp; sourceTree = ""; }; + 3BAC3A01172430F000473974 /* ErrorCorrection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ErrorCorrection.h; sourceTree = ""; }; + 3BAC3A02172430F000473974 /* ModulusGF.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ModulusGF.cpp; sourceTree = ""; }; + 3BAC3A03172430F000473974 /* ModulusGF.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ModulusGF.h; sourceTree = ""; }; + 3BAC3A04172430F000473974 /* ModulusPoly.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ModulusPoly.cpp; sourceTree = ""; }; + 3BAC3A05172430F000473974 /* ModulusPoly.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ModulusPoly.h; sourceTree = ""; }; + 3BAC3A07172430F000473974 /* Detector.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Detector.cpp; sourceTree = ""; }; + 3BAC3A08172430F000473974 /* Detector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Detector.h; sourceTree = ""; }; + 3BAC3A09172430F000473974 /* LinesSampler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LinesSampler.cpp; sourceTree = ""; }; + 3BAC3A0A172430F000473974 /* LinesSampler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LinesSampler.h; sourceTree = ""; }; + 3BAC3A0B172430F000473974 /* PDF417Reader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PDF417Reader.cpp; sourceTree = ""; }; + 3BAC3A0C172430F000473974 /* PDF417Reader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PDF417Reader.h; sourceTree = ""; }; + 3BAC3A211724313500473974 /* BigInteger.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BigInteger.cc; sourceTree = ""; }; + 3BAC3A221724313500473974 /* BigInteger.hh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = BigInteger.hh; sourceTree = ""; }; + 3BAC3A231724313500473974 /* BigIntegerAlgorithms.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BigIntegerAlgorithms.cc; sourceTree = ""; }; + 3BAC3A241724313500473974 /* BigIntegerAlgorithms.hh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = BigIntegerAlgorithms.hh; sourceTree = ""; }; + 3BAC3A251724313500473974 /* BigIntegerLibrary.hh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = BigIntegerLibrary.hh; sourceTree = ""; }; + 3BAC3A261724313500473974 /* BigIntegerUtils.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BigIntegerUtils.cc; sourceTree = ""; }; + 3BAC3A271724313500473974 /* BigIntegerUtils.hh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = BigIntegerUtils.hh; sourceTree = ""; }; + 3BAC3A281724313500473974 /* BigUnsigned.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BigUnsigned.cc; sourceTree = ""; }; + 3BAC3A291724313500473974 /* BigUnsigned.hh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = BigUnsigned.hh; sourceTree = ""; }; + 3BAC3A2A1724313500473974 /* BigUnsignedInABase.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BigUnsignedInABase.cc; sourceTree = ""; }; + 3BAC3A2B1724313500473974 /* BigUnsignedInABase.hh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = BigUnsignedInABase.hh; sourceTree = ""; }; + 3BAC3A2E1724313500473974 /* NumberlikeArray.hh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = NumberlikeArray.hh; sourceTree = ""; }; 3BC3D6A6158E8F790037CE30 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = Library/Frameworks/Cocoa.framework; sourceTree = DEVELOPER_DIR; }; 3BC3D6A9158E8F790037CE30 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = Library/Frameworks/AppKit.framework; sourceTree = SDKROOT; }; 3BC3D6AB158E8F790037CE30 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; @@ -378,6 +438,7 @@ 3B83E983158E66C600A3B31F = { isa = PBXGroup; children = ( + 3BAC3A1F1724313500473974 /* bigint */, 3B83E9A2158E679000A3B31F /* zxing */, 3B83E990158E66C600A3B31F /* Frameworks */, 3B83E98F158E66C600A3B31F /* Products */, @@ -405,6 +466,7 @@ 3B83E9A2158E679000A3B31F /* zxing */ = { isa = PBXGroup; children = ( + 3BAC39F7172430F000473974 /* pdf417 */, 3B6AA6701710C83200DF84C0 /* InvertedLuminanceSource.cpp */, 3B5A492D17091807004E112F /* ChecksumException.cpp */, 3B5A492E17091807004E112F /* ChecksumException.h */, @@ -711,6 +773,75 @@ path = detector; sourceTree = ""; }; + 3BAC39F7172430F000473974 /* pdf417 */ = { + isa = PBXGroup; + children = ( + 3BAC39F8172430F000473974 /* decoder */, + 3BAC3A06172430F000473974 /* detector */, + 3BAC3A0B172430F000473974 /* PDF417Reader.cpp */, + 3BAC3A0C172430F000473974 /* PDF417Reader.h */, + ); + path = pdf417; + sourceTree = ""; + }; + 3BAC39F8172430F000473974 /* decoder */ = { + isa = PBXGroup; + children = ( + 3BAC39F9172430F000473974 /* BitMatrixParser.cpp */, + 3BAC39FA172430F000473974 /* BitMatrixParser.h */, + 3BAC39FB172430F000473974 /* DecodedBitStreamParser.cpp */, + 3BAC39FC172430F000473974 /* DecodedBitStreamParser.h */, + 3BAC39FD172430F000473974 /* Decoder.cpp */, + 3BAC39FE172430F000473974 /* Decoder.h */, + 3BAC39FF172430F000473974 /* ec */, + ); + path = decoder; + sourceTree = ""; + }; + 3BAC39FF172430F000473974 /* ec */ = { + isa = PBXGroup; + children = ( + 3BAC3A00172430F000473974 /* ErrorCorrection.cpp */, + 3BAC3A01172430F000473974 /* ErrorCorrection.h */, + 3BAC3A02172430F000473974 /* ModulusGF.cpp */, + 3BAC3A03172430F000473974 /* ModulusGF.h */, + 3BAC3A04172430F000473974 /* ModulusPoly.cpp */, + 3BAC3A05172430F000473974 /* ModulusPoly.h */, + ); + path = ec; + sourceTree = ""; + }; + 3BAC3A06172430F000473974 /* detector */ = { + isa = PBXGroup; + children = ( + 3BAC3A07172430F000473974 /* Detector.cpp */, + 3BAC3A08172430F000473974 /* Detector.h */, + 3BAC3A09172430F000473974 /* LinesSampler.cpp */, + 3BAC3A0A172430F000473974 /* LinesSampler.h */, + ); + path = detector; + sourceTree = ""; + }; + 3BAC3A1F1724313500473974 /* bigint */ = { + isa = PBXGroup; + children = ( + 3BAC3A211724313500473974 /* BigInteger.cc */, + 3BAC3A221724313500473974 /* BigInteger.hh */, + 3BAC3A231724313500473974 /* BigIntegerAlgorithms.cc */, + 3BAC3A241724313500473974 /* BigIntegerAlgorithms.hh */, + 3BAC3A251724313500473974 /* BigIntegerLibrary.hh */, + 3BAC3A261724313500473974 /* BigIntegerUtils.cc */, + 3BAC3A271724313500473974 /* BigIntegerUtils.hh */, + 3BAC3A281724313500473974 /* BigUnsigned.cc */, + 3BAC3A291724313500473974 /* BigUnsigned.hh */, + 3BAC3A2A1724313500473974 /* BigUnsignedInABase.cc */, + 3BAC3A2B1724313500473974 /* BigUnsignedInABase.hh */, + 3BAC3A2E1724313500473974 /* NumberlikeArray.hh */, + ); + name = bigint; + path = core/src/bigint; + sourceTree = ""; + }; 3BC3D6A8158E8F790037CE30 /* Other Frameworks */ = { isa = PBXGroup; children = ( @@ -815,6 +946,22 @@ 3B5A493017091807004E112F /* ChecksumException.h in Headers */, 3B5A493617091826004E112F /* CodaBarReader.h in Headers */, 3B5A493817091826004E112F /* Code93Reader.h in Headers */, + 3BAC3A0E172430F000473974 /* BitMatrixParser.h in Headers */, + 3BAC3A10172430F000473974 /* DecodedBitStreamParser.h in Headers */, + 3BAC3A12172430F000473974 /* Decoder.h in Headers */, + 3BAC3A14172430F000473974 /* ErrorCorrection.h in Headers */, + 3BAC3A16172430F000473974 /* ModulusGF.h in Headers */, + 3BAC3A18172430F000473974 /* ModulusPoly.h in Headers */, + 3BAC3A1A172430F000473974 /* Detector.h in Headers */, + 3BAC3A1C172430F000473974 /* LinesSampler.h in Headers */, + 3BAC3A1E172430F000473974 /* PDF417Reader.h in Headers */, + 3BAC3A311724313500473974 /* BigInteger.hh in Headers */, + 3BAC3A331724313500473974 /* BigIntegerAlgorithms.hh in Headers */, + 3BAC3A341724313500473974 /* BigIntegerLibrary.hh in Headers */, + 3BAC3A361724313500473974 /* BigIntegerUtils.hh in Headers */, + 3BAC3A381724313500473974 /* BigUnsigned.hh in Headers */, + 3BAC3A3A1724313500473974 /* BigUnsignedInABase.hh in Headers */, + 3BAC3A3C1724313500473974 /* NumberlikeArray.hh in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -952,6 +1099,20 @@ 3B5A493517091826004E112F /* CodaBarReader.cpp in Sources */, 3B5A493717091826004E112F /* Code93Reader.cpp in Sources */, 3B6AA6711710C83200DF84C0 /* InvertedLuminanceSource.cpp in Sources */, + 3BAC3A0D172430F000473974 /* BitMatrixParser.cpp in Sources */, + 3BAC3A0F172430F000473974 /* DecodedBitStreamParser.cpp in Sources */, + 3BAC3A11172430F000473974 /* Decoder.cpp in Sources */, + 3BAC3A13172430F000473974 /* ErrorCorrection.cpp in Sources */, + 3BAC3A15172430F000473974 /* ModulusGF.cpp in Sources */, + 3BAC3A17172430F000473974 /* ModulusPoly.cpp in Sources */, + 3BAC3A19172430F000473974 /* Detector.cpp in Sources */, + 3BAC3A1B172430F000473974 /* LinesSampler.cpp in Sources */, + 3BAC3A1D172430F000473974 /* PDF417Reader.cpp in Sources */, + 3BAC3A301724313500473974 /* BigInteger.cc in Sources */, + 3BAC3A321724313500473974 /* BigIntegerAlgorithms.cc in Sources */, + 3BAC3A351724313500473974 /* BigIntegerUtils.cc in Sources */, + 3BAC3A371724313500473974 /* BigUnsigned.cc in Sources */, + 3BAC3A391724313500473974 /* BigUnsignedInABase.cc in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; diff --git a/iphone/ZXingWidget/ZXingWidget.xcodeproj/project.pbxproj b/iphone/ZXingWidget/ZXingWidget.xcodeproj/project.pbxproj index b636b3198..a80a643d5 100644 --- a/iphone/ZXingWidget/ZXingWidget.xcodeproj/project.pbxproj +++ b/iphone/ZXingWidget/ZXingWidget.xcodeproj/project.pbxproj @@ -159,6 +159,36 @@ 3B81AACE120F08170022E5D4 /* HybridBinarizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B81AACC120F08170022E5D4 /* HybridBinarizer.h */; }; 3B81AAF8120F0A7E0022E5D4 /* GreyscaleRotatedLuminanceSource.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3B81AAF6120F0A7E0022E5D4 /* GreyscaleRotatedLuminanceSource.cpp */; }; 3B81AAF9120F0A7E0022E5D4 /* GreyscaleRotatedLuminanceSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B81AAF7120F0A7E0022E5D4 /* GreyscaleRotatedLuminanceSource.h */; }; + 3BAC39C017242C2300473974 /* BitMatrixParser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3BAC39AC17242C2200473974 /* BitMatrixParser.cpp */; }; + 3BAC39C117242C2300473974 /* BitMatrixParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BAC39AD17242C2200473974 /* BitMatrixParser.h */; }; + 3BAC39C217242C2300473974 /* DecodedBitStreamParser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3BAC39AE17242C2200473974 /* DecodedBitStreamParser.cpp */; }; + 3BAC39C317242C2300473974 /* DecodedBitStreamParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BAC39AF17242C2200473974 /* DecodedBitStreamParser.h */; }; + 3BAC39C417242C2300473974 /* Decoder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3BAC39B017242C2200473974 /* Decoder.cpp */; }; + 3BAC39C517242C2300473974 /* Decoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BAC39B117242C2200473974 /* Decoder.h */; }; + 3BAC39C617242C2300473974 /* ErrorCorrection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3BAC39B317242C2200473974 /* ErrorCorrection.cpp */; }; + 3BAC39C717242C2300473974 /* ErrorCorrection.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BAC39B417242C2200473974 /* ErrorCorrection.h */; }; + 3BAC39C817242C2300473974 /* ModulusGF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3BAC39B517242C2200473974 /* ModulusGF.cpp */; }; + 3BAC39C917242C2300473974 /* ModulusGF.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BAC39B617242C2200473974 /* ModulusGF.h */; }; + 3BAC39CA17242C2300473974 /* ModulusPoly.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3BAC39B717242C2200473974 /* ModulusPoly.cpp */; }; + 3BAC39CB17242C2300473974 /* ModulusPoly.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BAC39B817242C2200473974 /* ModulusPoly.h */; }; + 3BAC39CC17242C2300473974 /* Detector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3BAC39BA17242C2200473974 /* Detector.cpp */; }; + 3BAC39CD17242C2300473974 /* Detector.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BAC39BB17242C2200473974 /* Detector.h */; }; + 3BAC39CE17242C2300473974 /* LinesSampler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3BAC39BC17242C2200473974 /* LinesSampler.cpp */; }; + 3BAC39CF17242C2300473974 /* LinesSampler.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BAC39BD17242C2300473974 /* LinesSampler.h */; }; + 3BAC39D017242C2300473974 /* PDF417Reader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3BAC39BE17242C2300473974 /* PDF417Reader.cpp */; }; + 3BAC39D117242C2300473974 /* PDF417Reader.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BAC39BF17242C2300473974 /* PDF417Reader.h */; }; + 3BAC39E717242E5D00473974 /* BigInteger.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3BAC39D817242E5D00473974 /* BigInteger.cc */; }; + 3BAC39E817242E5D00473974 /* BigInteger.hh in Headers */ = {isa = PBXBuildFile; fileRef = 3BAC39D917242E5D00473974 /* BigInteger.hh */; }; + 3BAC39E917242E5D00473974 /* BigIntegerAlgorithms.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3BAC39DA17242E5D00473974 /* BigIntegerAlgorithms.cc */; }; + 3BAC39EA17242E5D00473974 /* BigIntegerAlgorithms.hh in Headers */ = {isa = PBXBuildFile; fileRef = 3BAC39DB17242E5D00473974 /* BigIntegerAlgorithms.hh */; }; + 3BAC39EB17242E5D00473974 /* BigIntegerLibrary.hh in Headers */ = {isa = PBXBuildFile; fileRef = 3BAC39DC17242E5D00473974 /* BigIntegerLibrary.hh */; }; + 3BAC39EC17242E5D00473974 /* BigIntegerUtils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3BAC39DD17242E5D00473974 /* BigIntegerUtils.cc */; }; + 3BAC39ED17242E5D00473974 /* BigIntegerUtils.hh in Headers */ = {isa = PBXBuildFile; fileRef = 3BAC39DE17242E5D00473974 /* BigIntegerUtils.hh */; }; + 3BAC39EE17242E5D00473974 /* BigUnsigned.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3BAC39DF17242E5D00473974 /* BigUnsigned.cc */; }; + 3BAC39EF17242E5D00473974 /* BigUnsigned.hh in Headers */ = {isa = PBXBuildFile; fileRef = 3BAC39E017242E5D00473974 /* BigUnsigned.hh */; }; + 3BAC39F017242E5D00473974 /* BigUnsignedInABase.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3BAC39E117242E5D00473974 /* BigUnsignedInABase.cc */; }; + 3BAC39F117242E5D00473974 /* BigUnsignedInABase.hh in Headers */ = {isa = PBXBuildFile; fileRef = 3BAC39E217242E5D00473974 /* BigUnsignedInABase.hh */; }; + 3BAC39F317242E5D00473974 /* NumberlikeArray.hh in Headers */ = {isa = PBXBuildFile; fileRef = 3BAC39E517242E5D00473974 /* NumberlikeArray.hh */; }; AA747D9F0F9514B9006C5449 /* ZXingWidget_Prefix.pch in Headers */ = {isa = PBXBuildFile; fileRef = AA747D9E0F9514B9006C5449 /* ZXingWidget_Prefix.pch */; }; AACBBE4A0F95108600F1A2B1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AACBBE490F95108600F1A2B1 /* Foundation.framework */; }; E534594311987396000CB77F /* BarcodeFormat.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E53458B511987396000CB77F /* BarcodeFormat.cpp */; }; @@ -447,6 +477,36 @@ 3B81AACC120F08170022E5D4 /* HybridBinarizer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HybridBinarizer.h; sourceTree = ""; }; 3B81AAF6120F0A7E0022E5D4 /* GreyscaleRotatedLuminanceSource.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = GreyscaleRotatedLuminanceSource.cpp; sourceTree = ""; }; 3B81AAF7120F0A7E0022E5D4 /* GreyscaleRotatedLuminanceSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GreyscaleRotatedLuminanceSource.h; sourceTree = ""; }; + 3BAC39AC17242C2200473974 /* BitMatrixParser.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BitMatrixParser.cpp; sourceTree = ""; }; + 3BAC39AD17242C2200473974 /* BitMatrixParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BitMatrixParser.h; sourceTree = ""; }; + 3BAC39AE17242C2200473974 /* DecodedBitStreamParser.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = DecodedBitStreamParser.cpp; sourceTree = ""; }; + 3BAC39AF17242C2200473974 /* DecodedBitStreamParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DecodedBitStreamParser.h; sourceTree = ""; }; + 3BAC39B017242C2200473974 /* Decoder.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Decoder.cpp; sourceTree = ""; }; + 3BAC39B117242C2200473974 /* Decoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Decoder.h; sourceTree = ""; }; + 3BAC39B317242C2200473974 /* ErrorCorrection.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ErrorCorrection.cpp; sourceTree = ""; }; + 3BAC39B417242C2200473974 /* ErrorCorrection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ErrorCorrection.h; sourceTree = ""; }; + 3BAC39B517242C2200473974 /* ModulusGF.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ModulusGF.cpp; sourceTree = ""; }; + 3BAC39B617242C2200473974 /* ModulusGF.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ModulusGF.h; sourceTree = ""; }; + 3BAC39B717242C2200473974 /* ModulusPoly.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ModulusPoly.cpp; sourceTree = ""; }; + 3BAC39B817242C2200473974 /* ModulusPoly.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ModulusPoly.h; sourceTree = ""; }; + 3BAC39BA17242C2200473974 /* Detector.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Detector.cpp; sourceTree = ""; }; + 3BAC39BB17242C2200473974 /* Detector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Detector.h; sourceTree = ""; }; + 3BAC39BC17242C2200473974 /* LinesSampler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LinesSampler.cpp; sourceTree = ""; }; + 3BAC39BD17242C2300473974 /* LinesSampler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LinesSampler.h; sourceTree = ""; }; + 3BAC39BE17242C2300473974 /* PDF417Reader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PDF417Reader.cpp; sourceTree = ""; }; + 3BAC39BF17242C2300473974 /* PDF417Reader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PDF417Reader.h; sourceTree = ""; }; + 3BAC39D817242E5D00473974 /* BigInteger.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BigInteger.cc; sourceTree = ""; }; + 3BAC39D917242E5D00473974 /* BigInteger.hh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = BigInteger.hh; sourceTree = ""; }; + 3BAC39DA17242E5D00473974 /* BigIntegerAlgorithms.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BigIntegerAlgorithms.cc; sourceTree = ""; }; + 3BAC39DB17242E5D00473974 /* BigIntegerAlgorithms.hh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = BigIntegerAlgorithms.hh; sourceTree = ""; }; + 3BAC39DC17242E5D00473974 /* BigIntegerLibrary.hh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = BigIntegerLibrary.hh; sourceTree = ""; }; + 3BAC39DD17242E5D00473974 /* BigIntegerUtils.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BigIntegerUtils.cc; sourceTree = ""; }; + 3BAC39DE17242E5D00473974 /* BigIntegerUtils.hh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = BigIntegerUtils.hh; sourceTree = ""; }; + 3BAC39DF17242E5D00473974 /* BigUnsigned.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BigUnsigned.cc; sourceTree = ""; }; + 3BAC39E017242E5D00473974 /* BigUnsigned.hh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = BigUnsigned.hh; sourceTree = ""; }; + 3BAC39E117242E5D00473974 /* BigUnsignedInABase.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BigUnsignedInABase.cc; sourceTree = ""; }; + 3BAC39E217242E5D00473974 /* BigUnsignedInABase.hh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = BigUnsignedInABase.hh; sourceTree = ""; }; + 3BAC39E517242E5D00473974 /* NumberlikeArray.hh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = NumberlikeArray.hh; sourceTree = ""; }; AA747D9E0F9514B9006C5449 /* ZXingWidget_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZXingWidget_Prefix.pch; sourceTree = SOURCE_ROOT; }; AACBBE490F95108600F1A2B1 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; D2AAC07E0554694100DB518D /* libZXingWidget.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libZXingWidget.a; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -730,9 +790,78 @@ path = detector; sourceTree = ""; }; + 3BAC39AA17242C2200473974 /* pdf417 */ = { + isa = PBXGroup; + children = ( + 3BAC39AB17242C2200473974 /* decoder */, + 3BAC39B917242C2200473974 /* detector */, + 3BAC39BE17242C2300473974 /* PDF417Reader.cpp */, + 3BAC39BF17242C2300473974 /* PDF417Reader.h */, + ); + path = pdf417; + sourceTree = ""; + }; + 3BAC39AB17242C2200473974 /* decoder */ = { + isa = PBXGroup; + children = ( + 3BAC39AC17242C2200473974 /* BitMatrixParser.cpp */, + 3BAC39AD17242C2200473974 /* BitMatrixParser.h */, + 3BAC39AE17242C2200473974 /* DecodedBitStreamParser.cpp */, + 3BAC39AF17242C2200473974 /* DecodedBitStreamParser.h */, + 3BAC39B017242C2200473974 /* Decoder.cpp */, + 3BAC39B117242C2200473974 /* Decoder.h */, + 3BAC39B217242C2200473974 /* ec */, + ); + path = decoder; + sourceTree = ""; + }; + 3BAC39B217242C2200473974 /* ec */ = { + isa = PBXGroup; + children = ( + 3BAC39B317242C2200473974 /* ErrorCorrection.cpp */, + 3BAC39B417242C2200473974 /* ErrorCorrection.h */, + 3BAC39B517242C2200473974 /* ModulusGF.cpp */, + 3BAC39B617242C2200473974 /* ModulusGF.h */, + 3BAC39B717242C2200473974 /* ModulusPoly.cpp */, + 3BAC39B817242C2200473974 /* ModulusPoly.h */, + ); + path = ec; + sourceTree = ""; + }; + 3BAC39B917242C2200473974 /* detector */ = { + isa = PBXGroup; + children = ( + 3BAC39BA17242C2200473974 /* Detector.cpp */, + 3BAC39BB17242C2200473974 /* Detector.h */, + 3BAC39BC17242C2200473974 /* LinesSampler.cpp */, + 3BAC39BD17242C2300473974 /* LinesSampler.h */, + ); + path = detector; + sourceTree = ""; + }; + 3BAC39D617242E5D00473974 /* bigint */ = { + isa = PBXGroup; + children = ( + 3BAC39D817242E5D00473974 /* BigInteger.cc */, + 3BAC39D917242E5D00473974 /* BigInteger.hh */, + 3BAC39DA17242E5D00473974 /* BigIntegerAlgorithms.cc */, + 3BAC39DB17242E5D00473974 /* BigIntegerAlgorithms.hh */, + 3BAC39DC17242E5D00473974 /* BigIntegerLibrary.hh */, + 3BAC39DD17242E5D00473974 /* BigIntegerUtils.cc */, + 3BAC39DE17242E5D00473974 /* BigIntegerUtils.hh */, + 3BAC39DF17242E5D00473974 /* BigUnsigned.cc */, + 3BAC39E017242E5D00473974 /* BigUnsigned.hh */, + 3BAC39E117242E5D00473974 /* BigUnsignedInABase.cc */, + 3BAC39E217242E5D00473974 /* BigUnsignedInABase.hh */, + 3BAC39E517242E5D00473974 /* NumberlikeArray.hh */, + ); + path = bigint; + sourceTree = ""; + }; E53458B311987396000CB77F /* CoreSrc */ = { isa = PBXGroup; children = ( + 3BAC39D617242E5D00473974 /* bigint */, E53458B411987396000CB77F /* zxing */, ); name = CoreSrc; @@ -742,6 +871,7 @@ E53458B411987396000CB77F /* zxing */ = { isa = PBXGroup; children = ( + 3BAC39AA17242C2200473974 /* pdf417 */, 3B6AA66A1710C34600DF84C0 /* InvertedLuminanceSource.cpp */, 3B6AA66B1710C34600DF84C0 /* InvertedLuminanceSource.h */, 3B6C805B17090EFC00D22AB2 /* ChecksumException.cpp */, @@ -1206,6 +1336,22 @@ 3B6C805A17090ED300D22AB2 /* Code93Reader.h in Headers */, 3B6C805E17090EFC00D22AB2 /* ChecksumException.h in Headers */, 3B6AA66D1710C34600DF84C0 /* InvertedLuminanceSource.h in Headers */, + 3BAC39C117242C2300473974 /* BitMatrixParser.h in Headers */, + 3BAC39C317242C2300473974 /* DecodedBitStreamParser.h in Headers */, + 3BAC39C517242C2300473974 /* Decoder.h in Headers */, + 3BAC39C717242C2300473974 /* ErrorCorrection.h in Headers */, + 3BAC39C917242C2300473974 /* ModulusGF.h in Headers */, + 3BAC39CB17242C2300473974 /* ModulusPoly.h in Headers */, + 3BAC39CD17242C2300473974 /* Detector.h in Headers */, + 3BAC39CF17242C2300473974 /* LinesSampler.h in Headers */, + 3BAC39D117242C2300473974 /* PDF417Reader.h in Headers */, + 3BAC39E817242E5D00473974 /* BigInteger.hh in Headers */, + 3BAC39EA17242E5D00473974 /* BigIntegerAlgorithms.hh in Headers */, + 3BAC39EB17242E5D00473974 /* BigIntegerLibrary.hh in Headers */, + 3BAC39ED17242E5D00473974 /* BigIntegerUtils.hh in Headers */, + 3BAC39EF17242E5D00473974 /* BigUnsigned.hh in Headers */, + 3BAC39F117242E5D00473974 /* BigUnsignedInABase.hh in Headers */, + 3BAC39F317242E5D00473974 /* NumberlikeArray.hh in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1450,6 +1596,20 @@ 3B6C805917090ED300D22AB2 /* Code93Reader.cpp in Sources */, 3B6C805D17090EFC00D22AB2 /* ChecksumException.cpp in Sources */, 3B6AA66C1710C34600DF84C0 /* InvertedLuminanceSource.cpp in Sources */, + 3BAC39C017242C2300473974 /* BitMatrixParser.cpp in Sources */, + 3BAC39C217242C2300473974 /* DecodedBitStreamParser.cpp in Sources */, + 3BAC39C417242C2300473974 /* Decoder.cpp in Sources */, + 3BAC39C617242C2300473974 /* ErrorCorrection.cpp in Sources */, + 3BAC39C817242C2300473974 /* ModulusGF.cpp in Sources */, + 3BAC39CA17242C2300473974 /* ModulusPoly.cpp in Sources */, + 3BAC39CC17242C2300473974 /* Detector.cpp in Sources */, + 3BAC39CE17242C2300473974 /* LinesSampler.cpp in Sources */, + 3BAC39D017242C2300473974 /* PDF417Reader.cpp in Sources */, + 3BAC39E717242E5D00473974 /* BigInteger.cc in Sources */, + 3BAC39E917242E5D00473974 /* BigIntegerAlgorithms.cc in Sources */, + 3BAC39EC17242E5D00473974 /* BigIntegerUtils.cc in Sources */, + 3BAC39EE17242E5D00473974 /* BigUnsigned.cc in Sources */, + 3BAC39F017242E5D00473974 /* BigUnsignedInABase.cc in Sources */, ); runOnlyForDeploymentPostprocessing = 0; };