Merge branch 'fix_interspacing'
[GitX.git] / PBGitRevList.h
blob1417cacd7f1d3ebf057859dcce99c573b763a13b
1 //
2 // PBGitRevList.h
3 // GitX
4 //
5 // Created by Pieter de Bie on 17-06-08.
6 // Copyright 2008 __MyCompanyName__. All rights reserved.
7 //
9 #import <Cocoa/Cocoa.h>
12 @interface PBGitRevList : NSObject {
13 NSArray* commits;
14 NSArray* parameters;
15 id grapher;
16 id repository;
17 NSString* currentRef;
20 - initWithRepository:(id)repo andRevListParameters:(NSArray*) params;
21 - readCommits;
23 @property(retain) NSArray* commits;
24 @property(retain) id grapher;
26 @end