// // SandboxBroker.h // Cog // // Created by Christopher Snowhill on 6/20/22. // #import NS_ASSUME_NONNULL_BEGIN @interface SandboxBroker : NSObject { NSMutableArray *storage; } + (SandboxBroker *)sharedSandboxBroker; - (id)init; - (void)shutdown; - (void)beginFolderAccess:(NSURL *)fileUrl; - (void)endFolderAccess:(NSURL *)fileUrl; @end NS_ASSUME_NONNULL_END