Files
gitx/PBGitRevList.h
T
Pieter de Bie 52d9402513 First take on graphing
This implements some sort of graph shower like Gitk has. However, it still
has bugs and can't do color very well.
2008-06-18 01:02:29 +02:00

25 lines
418 B
Objective-C

//
// PBGitRevList.h
// GitX
//
// Created by Pieter de Bie on 17-06-08.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@interface PBGitRevList : NSObject {
NSArray* commits;
NSArray* parameters;
id grapher;
id repository;
}
- initWithRepository:(id)repo andRevListParameters:(NSArray*) params;
@property(retain) NSArray* commits;
@property(retain) id grapher;
@end