25 lines
670 B
Objective-C
25 lines
670 B
Objective-C
//
|
|
// XPIMManager.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2021/10/21.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "XPIMRoomInterface.h"
|
|
#import "XPIMRoomMicQueueInterface.h"
|
|
#import "XPIMChatRoomMemberInterface.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPIMManager : NSObject
|
|
+ (instancetype)shareManager;
|
|
///聊天室的管理类
|
|
@property (nonatomic,strong, readonly) id<XPIMRoomInterface> chatRoomManager;
|
|
///麦序的管理类
|
|
@property (nonatomic,strong, readonly) id<XPIMRoomMicQueueInterface> microQueueManager;
|
|
///房间成员管理类
|
|
@property (nonatomic,strong, readonly) id<XPIMChatRoomMemberInterface> chatRoomMemberManager;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|