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.
25 lines
489 B
25 lines
489 B
//
|
|
// DTFIdentityManager.h
|
|
// DTFIdentityManager
|
|
//
|
|
// Created by mengbingchuan on 2022/11/23.
|
|
// Copyright © 2022 DTF. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "ZimRpcManager.h"
|
|
#import <DTFUtility/DTFFaceIdentityProtocol.h>
|
|
|
|
//version 2.2.8
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
typedef void (^ZIMCallback)(ZIMResponse *response);
|
|
|
|
@interface DTFIdentityManager : NSObject<DTFFaceIdentityProtocol>
|
|
|
|
+ (DTFIdentityManager *)sharedInstance;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|