Cog/FileTreeWindow/FileNode.m

30 lines
383 B
Mathematica
Raw Normal View History

2006-09-02 12:09:20 -04:00
//
// FileNode.m
// Cog
//
// Created by Vincent Spader on 8/20/2006.
// Copyright 2006 Vincent Spader. All rights reserved.
//
#import "FileNode.h"
@implementation FileNode
- (BOOL)isLeaf
{
return YES;
}
2007-10-15 20:18:58 -03:00
//Disable watching for us, it doesn't matter.
- (void)startWatching
{
}
- (void)stopWatching
{
}
- (void)updatePathNotification:(NSNotification *)notification
{
}
2006-09-02 12:09:20 -04:00
@end