cog/FileTreeWindow/FileNode.m

19 lines
219 B
Objective-C

//
// 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;
}
@end