19 lines
219 B
Matlab
19 lines
219 B
Matlab
|
//
|
||
|
// 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
|