Barcode Xpress Mobile for iOS
BXLicense.h
00001 /**************************************************************
00002  * Copyright 2011 - Accusoft Corporation, Tampa Florida.      *
00003  * This sample code is provided to Accusoft licensees "as is" *
00004  * with no restrictions on use or modification.  No warranty  *
00005  * for use of this sample code is provided by Accusoft.       *
00006  **************************************************************/
00007 
00015 #import <Foundation/Foundation.h>
00016 
00021 @interface BXLicense : NSObject {
00022     @private
00024     NSString *m_OEMLicenseKey;
00025     
00027     long m_Key1;
00029     long m_Key2;
00031     long m_Key3;
00033     long m_Key4;
00034     
00036     NSBundle *m_MainBundle;
00037 }
00038 
00040 @property (nonatomic, strong) NSString *m_OEMLicenseKey;
00042 @property (nonatomic, assign) long m_Key1;
00044 @property (nonatomic, assign) long m_Key2;
00046 @property (nonatomic, assign) long m_Key3;
00048 @property (nonatomic, assign) long m_Key4;
00050 @property (nonatomic, strong) NSBundle *m_MainBundle;
00051 
00059 -(id)init;
00060 
00091 -(id)initWithData :(NSString*)inOEMLicenseKey mainBundle:(NSBundle*)inMainBundle key1:(long)inKey1 key2:(long)inKey2 key3:(long)inKey3 key4:(long)inKey4;
00092 
00093 @end