Files
yinmeng-ios/xplan-ios/Main/RTC/RtcImpl/BaseRtcImpl.h

24 lines
420 B
Objective-C

//
// RTCBaseImpl.h
// xplan-ios
//
// Created by zu on 2021/10/19.
//
#import <Foundation/Foundation.h>
#import "RtcInterface.h"
#import "RtcImplDelegate.h"
#import "AccountInfoStorage.h"
NS_ASSUME_NONNULL_BEGIN
@interface BaseRtcImpl : NSObject <RtcInterface>
@property (nonatomic,weak) id<RtcImplDelegate> delegate;
- (instancetype)initWithDelegate:(id<RtcImplDelegate>)delegate;
@end
NS_ASSUME_NONNULL_END