Files
gitx/PBGraphCellInfo.h
T
Pieter de Bie bbeedd10ce Rewrite the graphing code
This uses more Cocoa classes to draw the lines, making it easier to
understand and hopefully maintain.

Furthermore, we use less memory now, which is nice, but all the
dynamic arrays probably mean more CPU usage.
2008-08-27 21:51:42 +02:00

23 lines
403 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>
@interface PBGraphCellInfo : NSObject
{
int position;
NSArray* lines;
int numColumns;
}
@property(readonly) NSArray* lines;
@property(assign) int position, numColumns;
- (id)initWithPosition: (int) p andLines: (NSArray*) l;
@end