mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
23 lines
444 B
Objective-C
23 lines
444 B
Objective-C
//
|
|
// PBLine.h
|
|
// GitX
|
|
//
|
|
// Created by Pieter de Bie on 27-08-08.
|
|
// Copyright 2008 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
@interface PBGitGraphLine : NSObject
|
|
{
|
|
int upper;
|
|
int from;
|
|
int to;
|
|
}
|
|
@property(readonly) int upper, from, to;
|
|
- (id)initWithUpper: (int) u From: (int) f to: (int) t;
|
|
+ (PBGitGraphLine*) lowerLineFrom:(int) f to: (int) t;
|
|
+ (PBGitGraphLine*) upperLineFrom:(int) f to: (int) t;
|
|
|
|
@end |