12345678910111213141516171819202122232425262728293031 |
-
-
- #import "ZXBitMatrix.h"
- #import "ZXDetectorResult.h"
-
- @implementation ZXDetectorResult
-
- - (id)initWithBits:(ZXBitMatrix *)bits points:(NSArray *)points {
- if (self = [super init]) {
- _bits = bits;
- _points = points;
- }
-
- return self;
- }
-
- @end
|