forked from FileShuttle/fileshuttle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MVScreenshotsListener.h
executable file
·32 lines (23 loc) · 1.07 KB
/
MVScreenshotsListener.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//
// MVDirectoryListener.h
// FileShuttle
//
// Created by Michaël on 26/04/11.
//
#import <Foundation/Foundation.h>
@protocol MVDirectoryListenerDelegate;
///////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////
@interface MVScreenshotsListener : NSObject {
}
@property (assign, nonatomic) BOOL listening;
@property (assign) NSObject <MVDirectoryListenerDelegate> *delegate;
@end
///////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////
@protocol MVDirectoryListenerDelegate
- (void)directoryListener:(MVScreenshotsListener*)aDirectoryListener
newFile:(NSURL*)fileURL;
@end