5 // Created by Pieter de Bie on 27-08-08.
6 // Copyright 2008 __MyCompanyName__. All rights reserved.
9 #import "PBGitGraphLine.h"
11 @implementation PBGitGraphLine
12 @synthesize upper, from, to, colorIndex;
13 - (id)initWithUpper: (char) u From: (char) f to: (char) t color: (char) c;
22 + (PBGitGraphLine*) lowerLineFrom:(char) f to: (char) t color: (char) c
24 return [[PBGitGraphLine alloc] initWithUpper:0 From:f to:t color:c];
27 + (PBGitGraphLine*) upperLineFrom:(char) f to: (char) t color: (char) c
29 return [[PBGitGraphLine alloc] initWithUpper:1 From:f to:t color: c];