21 lines
303 B
Mathematica
21 lines
303 B
Mathematica
|
//
|
||
|
// FileTreeController.m
|
||
|
// Cog
|
||
|
//
|
||
|
// Created by Vincent Spader on 2/17/08.
|
||
|
// Copyright 2008 __MyCompanyName__. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import "FileTreeWindowController.h"
|
||
|
|
||
|
|
||
|
@implementation FileTreeWindowController
|
||
|
|
||
|
- (id)init
|
||
|
{
|
||
|
return [super initWithWindowNibName:@"FileTreePanel"];
|
||
|
}
|
||
|
|
||
|
|
||
|
@end
|