EMClient+Call.h 490 B

12345678910111213141516171819202122232425262728293031
  1. /*!
  2. * \~chinese
  3. * @header EMClient+Call.h
  4. * @abstract Client的实时通讯扩展
  5. * @author Hyphenate
  6. * @version 3.00
  7. *
  8. * \~english
  9. * @header EMClient+Call.h
  10. * @abstract Client call extension
  11. * @author Hyphenate
  12. * @version 3.00
  13. */
  14. #import "EMClient.h"
  15. #import "IEMCallManager.h"
  16. @interface EMClient (Call)
  17. /*!
  18. * \~chinese
  19. * 实时通讯模块
  20. *
  21. * \~english
  22. * call module
  23. */
  24. @property (strong, nonatomic, readonly) id<IEMCallManager> callManager;
  25. @end