Files
gitx/PBGraphCellInfo.h
Nathan Kinsinger 69827e920e Performance improvements for graphing commits
The big improvement is reusing the PBGraphCellInfo (~8-10%)
2010-07-04 22:12:42 -06:00

29 lines
553 B
Objective-C

//
// PBGraphCellInfo.h
// GitX
//
// Created by Pieter de Bie on 27-08-08.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "PBGitGraphLine.h"
@interface PBGraphCellInfo : NSObject
{
int position;
struct PBGitGraphLine *lines;
int nLines;
int numColumns;
char sign;
}
@property(assign) struct PBGitGraphLine *lines;
@property(assign) int nLines;
@property(assign) int position, numColumns;
@property(assign) char sign;
- (id)initWithPosition:(int) p andLines:(struct PBGitGraphLine *) l;
@end