You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
//
// APBioBisConfigManager.h
// APFaceDetectBiz
//
// Created by 晗羽 on 1/7/16.
// Copyright © 2016 DTF. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "APBToygerRemoteConfig.h"
@interface APBToygerBioBisConfigManager : NSObject /**
* 初始化biscfg * * @param biscfg pb/json格式 * * @return 生成一个配置对象 */ - (instancetype)initWithBisConfig:(NSString *)biscfg; /**
* bisToken * * @return 服务端下放的bistoken,每次人脸识别服务端的ID */ - (NSString * )bisToken;
- (NSString * )ioscfg;
- (NSString * )iosvoicecfg;
- (APBToygerRemoteConfig *)bisConfig;
- (int) sampleMode;
- (BOOL) isLogin;
- (NSString *) apBioSecPublicKey;
+ (NSDictionary *)getDictfrom:(NSString *) jsonStr; @end
|