Files
gitx/PBGraphCellInfo.h
T
Pieter de Bie eb472e0c86 PBGraphCellInfo: remove unneeded data member
And clean up the file while we're at it
2008-11-24 22:54:05 +01:00

29 lines
555 B
Objective-C

//
// PBGraphCellInfo.h
// GitX
//
// Created by Pieter de Bie on 27-08-08.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "PBGitGraphLine.h"
@interface PBGraphCellInfo : NSObject
{
int position;
struct PBGitGraphLine *lines;
int nLines;
int numColumns;
char sign;
}
@property(readonly) struct PBGitGraphLine *lines;
@property(assign) int nLines;
@property(assign) int position, numColumns;
@property(assign) char sign;
- (id)initWithPosition:(int) p andLines:(struct PBGitGraphLine *) l;
@end