mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
c8cfe7acaa
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 :)
21 lines
344 B
Objective-C
21 lines
344 B
Objective-C
//
|
|
// PBSourceViewItem.h
|
|
// GitX
|
|
//
|
|
// Created by Pieter de Bie on 9/8/09.
|
|
// Copyright 2009 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
@interface PBSourceViewItem : NSObject {
|
|
NSString *name;
|
|
}
|
|
|
|
- (id)initWithName:(NSString *)name;
|
|
|
|
@property(retain) NSString *name;
|
|
@property(readonly) NSArray *children;
|
|
@end
|