You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ZXingObjCCore.h 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /*
  2. * Copyright 2012 ZXing authors
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #ifndef _ZXINGOBJC_CORE_
  17. #define _ZXINGOBJC_CORE_
  18. // Client
  19. #import "ZXCapture.h"
  20. #import "ZXCaptureDelegate.h"
  21. #import "ZXCGImageLuminanceSource.h"
  22. #import "ZXImage.h"
  23. // Common
  24. #import "ZXBitArray.h"
  25. #import "ZXBitMatrix.h"
  26. #import "ZXBitSource.h"
  27. #import "ZXBoolArray.h"
  28. #import "ZXByteArray.h"
  29. #import "ZXCharacterSetECI.h"
  30. #import "ZXDecoderResult.h"
  31. #import "ZXDefaultGridSampler.h"
  32. #import "ZXDetectorResult.h"
  33. #import "ZXGenericGF.h"
  34. #import "ZXGlobalHistogramBinarizer.h"
  35. #import "ZXGridSampler.h"
  36. #import "ZXHybridBinarizer.h"
  37. #import "ZXIntArray.h"
  38. #import "ZXMathUtils.h"
  39. #import "ZXMonochromeRectangleDetector.h"
  40. #import "ZXPerspectiveTransform.h"
  41. #import "ZXReedSolomonDecoder.h"
  42. #import "ZXReedSolomonEncoder.h"
  43. #import "ZXStringUtils.h"
  44. #import "ZXWhiteRectangleDetector.h"
  45. // Core
  46. #import "ZXBarcodeFormat.h"
  47. #import "ZXBinarizer.h"
  48. #import "ZXBinaryBitmap.h"
  49. #import "ZXByteMatrix.h"
  50. #import "ZXDecodeHints.h"
  51. #import "ZXDimension.h"
  52. #import "ZXEncodeHints.h"
  53. #import "ZXErrors.h"
  54. #import "ZXInvertedLuminanceSource.h"
  55. #import "ZXLuminanceSource.h"
  56. #import "ZXPlanarYUVLuminanceSource.h"
  57. #import "ZXReader.h"
  58. #import "ZXResult.h"
  59. #import "ZXResultMetadataType.h"
  60. #import "ZXResultPoint.h"
  61. #import "ZXResultPointCallback.h"
  62. #import "ZXRGBLuminanceSource.h"
  63. #import "ZXWriter.h"
  64. // Multi
  65. #import "ZXByQuadrantReader.h"
  66. #import "ZXGenericMultipleBarcodeReader.h"
  67. #import "ZXMultipleBarcodeReader.h"
  68. #endif