Barcode Xpress Mobile for iOS
 All Classes Functions Variables Properties Pages
BXLicense.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 BXLicense : NSObject {
22  @private
24  NSString *m_OEMLicenseKey;
25 
27  long m_Key1;
29  long m_Key2;
31  long m_Key3;
33  long m_Key4;
34 
36  NSBundle *m_MainBundle;
37 }
38 
40 @property (nonatomic, strong) NSString *m_OEMLicenseKey;
42 @property (nonatomic, assign) long m_Key1;
44 @property (nonatomic, assign) long m_Key2;
46 @property (nonatomic, assign) long m_Key3;
48 @property (nonatomic, assign) long m_Key4;
50 @property (nonatomic, strong) NSBundle *m_MainBundle;
51 
59 -(id)init;
60 
91 -(id)initWithData :(NSString*)inOEMLicenseKey mainBundle:(NSBundle*)inMainBundle key1:(long)inKey1 key2:(long)inKey2 key3:(long)inKey3 key4:(long)inKey4;
92 
93 @end
long m_Key2
Gets and sets Solution key 2.
Definition: BXLicense.h:29
long m_Key4
Gets and sets Solution key 4.
Definition: BXLicense.h:33
Defines a class that holds information about an Accusoft license to use the Accusoft Barcode Xpress S...
Definition: BXLicense.h:21
long m_Key3
Gets and sets Solution key 3.
Definition: BXLicense.h:31
NSString * m_OEMLicenseKey
Gets and sets the OEM license key.
Definition: BXLicense.h:24
NSBundle * m_MainBundle
Gets and sets the Main Bundle identifier of the application.
Definition: BXLicense.h:36
long m_Key1
Gets and sets Solution key 1.
Definition: BXLicense.h:27