KMProfileInfoWindowController.h 423 B

123456789101112131415161718192021
  1. //
  2. // KMProfileInfoWindowController.h
  3. // PDF Reader Pro Edition
  4. //
  5. // Created by 蒋志鹏 on 2019-07-19.
  6. //
  7. #import <Cocoa/Cocoa.h>
  8. @class SKMainWindowController;
  9. NS_ASSUME_NONNULL_BEGIN
  10. typedef void(^profileInfoAddtoDocCallBack)(NSString *string);
  11. @interface KMProfileInfoWindowController : NSWindowController
  12. @property (nonatomic, copy) profileInfoAddtoDocCallBack callBack;//回调
  13. @end
  14. NS_ASSUME_NONNULL_END