Files
gitx/PBGraphCellInfo.m
T
Pieter de Bie b4d7816be7 Grapher: draw ref names
This simply draws the ref names in the cell, without any markup or correct
rect.
2008-08-28 18:07:34 +02:00

21 lines
357 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;
- (id)initWithPosition: (int) p andLines: (NSArray*) l
{
position = p;
lines = l;
return self;
}
@end