Files
gitx/PBGitGraphLine.m
T
Pieter de Bie c3f5d517b3 Graphs: use chars to store line number
This reduces memory cost somewhat (10MB on the git.git repository),
while still keeping the same functionality :) Better would be to
use structs in a c array in the cellinfo, as the NSArray and
NSObject type information together now use more memory.
2008-10-03 18:10:43 +02:00

33 lines
677 B
Objective-C

//
// PBLine.m
// GitX
//
// Created by Pieter de Bie on 27-08-08.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
#import "PBGitGraphLine.h"
@implementation PBGitGraphLine
@synthesize upper, from, to, colorIndex;
- (id)initWithUpper: (char) u From: (char) f to: (char) t color: (char) c;
{
upper = u;
from = f;
to = t;
colorIndex = c;
return self;
}
+ (PBGitGraphLine*) lowerLineFrom:(char) f to: (char) t color: (char) c
{
return [[PBGitGraphLine alloc] initWithUpper:0 From:f to:t color:c];
}
+ (PBGitGraphLine*) upperLineFrom:(char) f to: (char) t color: (char) c
{
return [[PBGitGraphLine alloc] initWithUpper:1 From:f to:t color: c];
}
@end