GitX v0.4.1
[GitX.git] / PBGraphCellInfo.m
blobc6d34125c0477107595e74047e95898d1aec6445
1 //
2 //  PBGraphCellInfo.m
3 //  GitX
4 //
5 //  Created by Pieter de Bie on 27-08-08.
6 //  Copyright 2008 __MyCompanyName__. All rights reserved.
7 //
9 #import "PBGraphCellInfo.h"
12 @implementation PBGraphCellInfo
13 @synthesize lines, position, numColumns, refs, sign;
14 - (id)initWithPosition: (int) p andLines: (NSArray*) l
16         position = p;
17         lines = l;
18         
19         return self;
21 @end