2006-09-02 12:09:20 -04:00
|
|
|
//
|
|
|
|
// FileTreeDelegate.h
|
|
|
|
// BindTest
|
|
|
|
//
|
2006-09-04 14:46:18 -04:00
|
|
|
// Created by Vincent Spader on 8/20/06.
|
|
|
|
// Copyright 2006 Vincent Spader. All rights reserved.
|
2006-09-02 12:09:20 -04:00
|
|
|
//
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
2007-02-24 17:36:27 -03:00
|
|
|
#import "UKKQueue.h"
|
2006-09-02 12:09:20 -04:00
|
|
|
|
|
|
|
@interface FileTreeWatcher : NSObject {
|
|
|
|
UKKQueue *kqueue;
|
|
|
|
id delegate;
|
|
|
|
|
|
|
|
NSMutableArray *watchedPaths;
|
|
|
|
}
|
|
|
|
|
2006-09-17 14:11:29 -04:00
|
|
|
- (void)addPath: (NSString *)path;
|
|
|
|
- (void)removePath: (NSString *)path;
|
|
|
|
|
2006-09-02 12:09:20 -04:00
|
|
|
@end
|