Barcode Xpress Mobile for iOS
 All Classes Functions Variables Properties Pages
BXThreadData.h
1 /**************************************************************
2  * Copyright 2011 - Accusoft Corporation, Tampa Florida. *
3  * This sample code is provided to Accusoft licensees "as is" *
4  * with no restrictions on use or modification. No warranty *
5  * for use of this sample code is provided by Accusoft. *
6  **************************************************************/
7 
15 #import <Foundation/Foundation.h>
16 
21 @interface BXThreadData : NSObject {
22  @public
26  void* m_image;
28  size_t m_width;
30  size_t m_height;
32  size_t m_stride;
33  }
34 
36 @property (nonatomic) int m_threadID;
38 @property (nonatomic) void* m_image;
40 @property size_t m_width;
42 @property size_t m_height;
43 // Number of bytes per row in the image.
44 @property size_t m_stride;
45 
46 @end
Defines a class to hold data that is transferred to/from the threads processing images using Barcode ...
Definition: BXThreadData.h:21
size_t m_width
Gets the width of the image in pixels.
Definition: BXThreadData.h:28
void * m_image
Gets and sets a pointer to byte data of the image.
Definition: BXThreadData.h:26
size_t m_height
Gets the height of the image in pixels.
Definition: BXThreadData.h:30
size_t m_stride
Number of bytes per row in the image.
Definition: BXThreadData.h:32
int m_threadID
Gets and sets the ID of the thread.
Definition: BXThreadData.h:24