Files
yinmeng-ios/xplan-ios/Main/IM/XPIMManager.h

25 lines
641 B
C
Raw Normal View History

2021-10-21 12:01:21 +08:00
//
// XPIMManager.h
// xplan-ios
//
// Created by 冯硕 on 2021/10/21.
//
#import <Foundation/Foundation.h>
#import "XPIMLoginInterface.h"
2021-10-21 17:37:26 +08:00
#import "XPIMRoomInterface.h"
#import "XPIMRoomMicQueueInterface.h"
2021-10-21 12:01:21 +08:00
NS_ASSUME_NONNULL_BEGIN
@interface XPIMManager : NSObject
+ (instancetype)shareManager;
///im登录的协议
@property (nonatomic,strong, readonly) id<XPIMLoginInterface> imLoginManager;
2021-10-21 17:37:26 +08:00
///聊天室的管理类
@property (nonatomic,strong, readonly) id<XPIMRoomInterface> chatRoomManager;
///麦序的管理类
@property (nonatomic,strong, readonly) id<XPIMRoomMicQueueInterface> microQueueManager;
2021-10-21 12:01:21 +08:00
@end
NS_ASSUME_NONNULL_END