cog/FileDrawer/FileTreeWatcher.h

23 lines
378 B
Objective-C

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