mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 15:30:18 +00:00
69827e920e
The big improvement is reusing the PBGraphCellInfo (~8-10%)
29 lines
553 B
Objective-C
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 |