//
//  FileMonitorDelegateProtocol.h
//  iVersion
//
//  Created by Ben Reeves on 02/11/2009.
//  Copyright 2009 __MyCompanyName__. All rights reserved.
//



@protocol FileMonitorDelegateProtocol

@optional
-(void)nodeWasCreatedAt:(NSString*)path;
-(void)nodeWasDeletedAt:(NSString*)path;
-(void)fileSizeDidchange:(NSString*)path bytes:(size_t)difference;

@end
