cog/FileTree/FileNode.m

18 lines
219 B
Matlab
Raw Normal View History

2006-09-02 16:09:20 +00: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 {
2006-09-02 16:09:20 +00:00
return YES;
}
@end