123456789101112131415161718192021 |
- //
- // KMProfileInfoWindowController.h
- // PDF Reader Pro Edition
- //
- // Created by 蒋志鹏 on 2019-07-19.
- //
- #import <Cocoa/Cocoa.h>
- @class SKMainWindowController;
- NS_ASSUME_NONNULL_BEGIN
- typedef void(^profileInfoAddtoDocCallBack)(NSString *string);
- @interface KMProfileInfoWindowController : NSWindowController
- @property (nonatomic, copy) profileInfoAddtoDocCallBack callBack;//回调
- @end
- NS_ASSUME_NONNULL_END
|