GitX v0.4.1
[GitX.git] / PBGraphCellInfo.h
blob61139eab299cebee93755c529a7c374a8b0c61bb
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>
12 @interface PBGraphCellInfo : NSObject
14 int position;
15 NSArray* lines;
16 int numColumns;
17 char sign;
18 NSArray* refs;
20 @property(readonly) NSArray* lines;
21 @property(retain) NSArray* refs;
22 @property(assign) int position, numColumns;
23 @property(assign) char sign;
25 - (id)initWithPosition: (int) p andLines: (NSArray*) l;
27 @end