mirror of
https://github.com/ish-app/ish.git
synced 2026-01-18 13:57:29 +00:00
17 lines
334 B
Objective-C
17 lines
334 B
Objective-C
//
|
|
// FileProviderEnumerator.h
|
|
// iSHFiles
|
|
//
|
|
// Created by Theodore Dubois on 9/20/18.
|
|
//
|
|
|
|
#import <FileProvider/FileProvider.h>
|
|
#import "FileProviderItem.h"
|
|
|
|
@interface FileProviderEnumerator : NSObject <NSFileProviderEnumerator>
|
|
|
|
- (instancetype)init NS_UNAVAILABLE;
|
|
- (instancetype)initWithItem:(FileProviderItem *)item;
|
|
|
|
@end
|