123456789101112131415161718192021222324252627282930 |
- //
- // CloudPhoneViewController+RBD.h
- // VclustersGemini
- //
- // Created by APPLE on 2021/8/16.
- // Copyright © 2021 APPLE. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "PlayerViewController.h"
- #import "CloudPhoneModel.h"
- #import <RCCloudPhoneSDK/RCCommandChannel.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface PlayerViewController(RBD)
- {
-
- }
- @property RCCommandChannelManager *commandChannelManager;//指令通道
- @property RCCommandChannelManager *businessCommandChannelManager;//业务通道
- - (void)extensionPhoneGetRBD;
- - (void)extensionRBDGetRbdDeviceNotification:(NSNotification *)notification;
- @end
- NS_ASSUME_NONNULL_END
|