GitX version 0.5
[GitX.git] / PBGraphCellInfo.m
blobf0bd78b3de2fd3b5f511ad67f8eb502d9445cf4c
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, sign;
14 - (id)initWithPosition: (int) p andLines: (NSArray*) l
16         position = p;
17         lines = l;
18         
19         return self;
21 @end