Merge branch 'fix_interspacing'
[GitX.git] / PBGraphCellInfo.h
blob8f4b84b1fdcc29626411e33249e14cbe0859295a
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;
18 @property(readonly) NSArray* lines;
19 @property(assign) int position, numColumns;
21 - (id)initWithPosition: (int) p andLines: (NSArray*) l;
23 @end