WFCUParticipantCollectionViewCell.h 502 B

1234567891011121314151617181920
  1. //
  2. // WFCUParticipantCollectionViewCell.h
  3. // WFChatUIKit
  4. //
  5. // Created by dali on 2020/1/20.
  6. // Copyright © 2020 WildFireChat. All rights reserved.
  7. //
  8. #if WFCU_SUPPORT_VOIP
  9. #import <UIKit/UIKit.h>
  10. #import <WFChatClient/WFCChatClient.h>
  11. #import <WFAVEngineKit/WFAVEngineKit.h>
  12. NS_ASSUME_NONNULL_BEGIN
  13. @interface WFCUParticipantCollectionViewCell : UICollectionViewCell
  14. - (void)setUserInfo:(WFCCUserInfo *)userInfo callProfile:(WFAVParticipantProfile *)profile;
  15. @end
  16. NS_ASSUME_NONNULL_END
  17. #endif