Cog/Preferences/Preferences/SandboxPathBehaviorController.h
Christopher Snowhill e8dacdabda [Sandbox] Add Playlist Path Suggester
Add a dialog for suggesting sandbox paths to the Preferences general
page, in the context menu.

Signed-off-by: Christopher Snowhill <kode54@gmail.com>
2022-06-21 02:45:45 -07:00

22 lines
380 B
Objective-C

//
// SandboxPathBehaviorController.h
// Preferences
//
// Created by Christopher Snowhill on 6/19/22.
//
#import <Cocoa/Cocoa.h>
NS_ASSUME_NONNULL_BEGIN
@interface SandboxPathBehaviorController : NSArrayController
- (void)addUrl:(NSURL *)url;
- (void)removePath:(NSString *)path;
- (void)removeStaleEntries;
- (BOOL)matchesPath:(NSURL *)url;
@end
NS_ASSUME_NONNULL_END