EMContactManager.h 555 B

123456789101112131415161718192021222324252627
  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. #import "EMManager.h"
  9. #include "emchatclient.h"
  10. #include "emcontactmanager_interface.h"
  11. #import "IEMContactManager.h"
  12. #import "EMContactManagerListener.h"
  13. @interface EMContactManager : EMManager<IEMContactManager>
  14. {
  15. emsdk::EMContactManagerListener *contactListener_;
  16. }
  17. @property (strong, nonatomic, readonly) EMMulticastDelegate<EMContactManagerDelegate> *delegates;
  18. - (void)removeContactListener;
  19. @end