TapPropertiesDelegateProxy.h 414 B

12345678910111213141516171819202122
  1. //
  2. // TapDBDynamicPropertiesDelegate.h
  3. // TapDB
  4. //
  5. // Created by xe on 2021/4/13.
  6. //
  7. #import <Foundation/Foundation.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. typedef const char* _Nullable (*TapPropertiesDelegate)(const char*);
  10. @interface TapPropertiesDelegateProxy : NSObject
  11. - (instancetype)initWithDelegate: (TapPropertiesDelegate)delegate key:(NSString*)key;
  12. - (NSString*) getProperties;
  13. @end
  14. NS_ASSUME_NONNULL_END