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