mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
21 lines
357 B
Objective-C
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, sign;
|
|
- (id)initWithPosition: (int) p andLines: (NSArray*) l
|
|
{
|
|
position = p;
|
|
lines = l;
|
|
|
|
return self;
|
|
}
|
|
@end |