Testing: add missing file
[GitX.git] / PBGitGrapher.h
blobd17f3bd3fb6455adb72ad9021f07f2550732425c
1 //
2 // PBGitGrapher.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>
10 #import "PBGitCommit.h"
11 #import "PBGitGraphLine.h"
12 #import "PBGraphCellInfo.h"
14 @interface PBGitGrapher : NSObject {
15 PBGraphCellInfo *previous;
16 void *pl;
17 int curLane;
20 - (id) initWithRepository:(PBGitRepository *)repo;
21 - (void) decorateCommit:(PBGitCommit *)commit;
22 @end