// // FileTreeDelegate.h // BindTest // // Created by Vincent Spader on 8/20/06. // Copyright 2006 Vincent Spader. All rights reserved. // #import #import "UKKQueue.h" @interface FileTreeWatcher : NSObject { UKKQueue *kqueue; id delegate; NSMutableArray *watchedPaths; } - (void)addPath: (NSString *)path; - (void)removePath: (NSString *)path; @end