PlayerViewController+RBD.h 656 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // CloudPhoneViewController+RBD.h
  3. // VclustersGemini
  4. //
  5. // Created by APPLE on 2021/8/16.
  6. // Copyright © 2021 APPLE. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "PlayerViewController.h"
  10. #import "CloudPhoneModel.h"
  11. #import <RCCloudPhoneSDK/RCCommandChannel.h>
  12. NS_ASSUME_NONNULL_BEGIN
  13. @interface PlayerViewController(RBD)
  14. {
  15. }
  16. @property RCCommandChannelManager *commandChannelManager;//指令通道
  17. @property RCCommandChannelManager *businessCommandChannelManager;//业务通道
  18. - (void)extensionPhoneGetRBD;
  19. - (void)extensionRBDGetRbdDeviceNotification:(NSNotification *)notification;
  20. @end
  21. NS_ASSUME_NONNULL_END