Blame view

HDFwear/3rd/RTKOTASDK/RTKLEFoundation.framework/Headers/RTKAccessory.h 487 Bytes
75d24c15   yangbin   123
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
  //
  //  RTKAccessory.h
  //  RTKLEFoundation
  //
  //  Created by jerome_gu on 2020/3/3.
  //  Copyright © 2020 jerome_gu. All rights reserved.
  //
  
  #import <Foundation/Foundation.h>
  #import <ExternalAccessory/ExternalAccessory.h>
  
  NS_ASSUME_NONNULL_BEGIN
  
  /**
   * A single wrapper of EAAccessory.
   */
  @interface RTKAccessory : NSObject
  
  @property (nonatomic, readonly) EAAccessory *underlyingAccessory;
  
  - (instancetype)initWithEAAccessory:(EAAccessory *)accessory;
  
  @end
  
  NS_ASSUME_NONNULL_END