Files
gitx/PBGitRevisionCell.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

19 lines
334 B
Objective-C

//
// PBGitRevisionCell.h
// GitX
//
// Created by Pieter de Bie on 17-06-08.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "PBGitGrapher.h"
@interface PBGitRevisionCell : NSTextFieldCell {
PBGitCellInfo cellInfo;
BOOL isReady;
}
@property(assign) PBGitCellInfo cellInfo;
@end