test/index: add more tests
[GitX.git] / PBGraphCellInfo.m
blobe5002cfa04832cb10e5b831c714c08e11b3c50b4
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, nLines;
14 - (id)initWithPosition:(int)p andLines:(struct PBGitGraphLine *)l
16         position = p;
17         lines = l;
18         
19         return self;
22 -(void) finalize
24         free(lines);
25         [super finalize];
28 @end