//
|
// HDLLinphoneIntercomVC.h
|
// VoipTest
|
//
|
// Created by 陈嘉乐 on 2021/8/2.
|
//
|
|
#import <UIKit/UIKit.h>
|
#import "HDLLinphoneCallDelegate.h"
|
NS_ASSUME_NONNULL_BEGIN
|
typedef enum {
|
HDLLPType_Default=0, //默认的类型
|
HDLLPType_HDLSR=1,//自研类型
|
}HDLLPType;
|
@interface HDLLinphoneIntercomVC : UIViewController
|
|
#pragma mark HDLLinphoneCallDelegate
|
|
/**
|
事件代理
|
*/
|
@property (nonatomic, weak) id<HDLLinphoneCallDelegate> hdlLinphoneCallDelegate;
|
|
@property (strong, nonatomic) NSString *CallId;//呼叫id
|
@property (assign, nonatomic) BOOL hasVideo;//是否支持视频
|
@property (strong, nonatomic) NSString *titleName;//标题
|
|
@property (strong, nonatomic) NSString *userName;//用户账号
|
@property(nonatomic,assign)HDLLPType deviceType;//门口机类型
|
|
@end
|
|
NS_ASSUME_NONNULL_END
|