Testing: add missing file
[GitX.git] / PBGraphCellInfo.h
blob5948e0f83d62a0deb0c5c2af043bc68720f9aa25
1 //
2 // PBGraphCellInfo.h
3 // GitX
4 //
5 // Created by Pieter de Bie on 27-08-08.
6 // Copyright 2008 __MyCompanyName__. All rights reserved.
7 //
9 #import <Cocoa/Cocoa.h>
10 #import "PBGitGraphLine.h"
12 @interface PBGraphCellInfo : NSObject
14 int position;
15 struct PBGitGraphLine *lines;
16 int nLines;
17 int numColumns;
18 char sign;
21 @property(readonly) struct PBGitGraphLine *lines;
22 @property(assign) int nLines;
23 @property(assign) int position, numColumns;
24 @property(assign) char sign;
27 - (id)initWithPosition:(int) p andLines:(struct PBGitGraphLine *) l;
29 @end