Files
gitx/PBSourceViewItem.m
T
Pieter de Bie c8cfe7acaa Add start of a sourceview list
This shows in a separate window for now, so we don't
mess up the xibs. Once I'm satisfied with the result,
I can put it into the main view with a single change :)
2009-09-10 01:25:49 +02:00

30 lines
414 B
Objective-C

//
// PBSourceViewItem.m
// GitX
//
// Created by Pieter de Bie on 9/8/09.
// Copyright 2009 __MyCompanyName__. All rights reserved.
//
#import "PBSourceViewItem.h"
@implementation PBSourceViewItem
@synthesize name;
@dynamic children;
- (id)initWithName:(NSString *)aName
{
if (!(self = [super init]))
return nil;
name = aName;
return self;
}
- (NSArray *)children
{
return [NSArray array];
}
@end