123456789101112131415161718 |
- //
- // SKDocumentController.h
- // PDF Reader Pro
- //
- // Created by lizhe on 2024/2/23.
- //
- #import <Cocoa/Cocoa.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface SKDocumentController : NSDocumentController
- - (Class)documentClassForContentsOfURL:(NSURL *)inAbsoluteURL;
- - (id)openDocumentWithSetup:(NSDictionary *)setup error:(NSError **)outError;
- @end
- NS_ASSUME_NONNULL_END
|