123456789101112131415161718192021222324 |
- //
- // ShearDeviceUDPManager.h
- // VclustersGemini
- //
- // Copyright © 2021 APPLE. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface ShearDeviceUDPManager : NSObject
- #pragma mark 自定义方法
- + (instancetype)shareInstance;
- - (void)startShearchDevice;
- - (void)broadcast;
- - (void)shearchDeviceLoop;
- @end
- NS_ASSUME_NONNULL_END
|