Files
gitx/PBGraphCellInfo.m
T
Pieter de Bie 78e45bd22c Add support for --left-right
This draws rectangles instead of circles when someone supplies
--left-right as a GitX argument
2008-09-12 20:29:09 +02:00

21 lines
363 B
Objective-C

//
// PBGraphCellInfo.m
// GitX
//
// Created by Pieter de Bie on 27-08-08.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
#import "PBGraphCellInfo.h"
@implementation PBGraphCellInfo
@synthesize lines, position, numColumns, refs, sign;
- (id)initWithPosition: (int) p andLines: (NSArray*) l
{
position = p;
lines = l;
return self;
}
@end