WFCUVideoViewController.h 471 B

1234567891011121314151617
  1. //
  2. // ViewController.h
  3. // WFDemo
  4. //
  5. // Created by heavyrain on 17/9/27.
  6. // Copyright © 2017年 WildFireChat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class WFAVCallSession;
  10. @class WFCCConversation;
  11. @interface WFCUVideoViewController : UIViewController
  12. - (instancetype)initWithSession:(WFAVCallSession *)session;
  13. - (instancetype)initWithTargets:(NSArray<NSString *> *)targetIds conversation:(WFCCConversation *)conversation audioOnly:(BOOL)audioOnly;
  14. @end