// // RSLicenseUtil.h // RSLicenseSDK // Copyright © 2018년 RAONSECURE All rights reserved. // #import #import "RSLicense.h" #import "ErrorCode.h" @interface RSLicenseChecker : NSObject { RSLicense *mRSLicenseData; RSLicenseInfo *mRSLicenseInfo; RSLicenseSchema *mRSLicenseSchema; RSFeature *mRSFreature; } + (RSLicenseChecker *) sharedInstance; - (int)checkLicenseFile:(NSString *)filePath; - (BOOL)doubleCheckLicense; - (void)requestLicense:(NSString *)serverUrl withSuccessBlock:(void (^)(int resultCode))aSuccessEvent errorBlock:(void (^)(int resultCode))aFailEvent; - (RSLicense *)getRaonLicense; @end