Cognex Mobile Barcode SDK
SDK for supporting communication with Cognex Barcode Reader devices
CMBReadResults.h
Go to the documentation of this file.
1//
2// CMBReadResults.h
3// DataManSDK
4//
5// Created by Gyula Hatalyak on 2017. 04. 10..
6// Copyright © 2017. Cognex. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10#import <cmbSDK/CMBReadResult.h>
11
15@interface CMBReadResults : NSObject
16
21@property (readonly) NSString *XML;
22
26@property (readonly) NSArray<CMBReadResult *> *readResults;
27
31@property (readonly) NSArray<CMBReadResult *> *subReadResults;
32
33@end
Represents a list of read results.
Definition: CMBReadResults.h:16
NSArray< CMBReadResult * > * subReadResults
Returns an array of CMBReadResult objects excluding the main result.
Definition: CMBReadResults.h:31
NSArray< CMBReadResult * > * readResults
Returns an array of CMBReadResult objects including the main result.
Definition: CMBReadResults.h:26
NSString * XML
Returns the raw XML recieved from the reader.
Definition: CMBReadResults.h:21