HyphenateSDK  3.6.1
EMContactManager.h
1 //
2 // EMContactManager.h
3 // HyphenateSDK
4 //
5 // Created by dhc on 15/11/9.
6 // Copyright © 2015年 hyphenate.com. All rights reserved.
7 //
8 
9 #import "EMManager.h"
10 
11 #include "emchatclient.h"
12 #include "emcontactmanager_interface.h"
13 
14 #import "IEMContactManager.h"
15 #import "EMContactManagerListener.h"
16 
17 @interface EMContactManager : EMManager<IEMContactManager>
18 {
19  emsdk::EMContactManagerListener *contactListener_;
20 }
21 
22 @property (strong, nonatomic, readonly) EMMulticastDelegate<EMContactManagerDelegate> *delegates;
23 
24 - (void)removeContactListener;
25 
26 @end
Definition: IEMContactManager.h:29
Definition: EMContactManager.h:17