mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
a294d911b0
This introduces a new object, PBGitLane that keeps track of the current lane. We used to only need a sha for a lane, but now that more information is needed, an extra object is in order. PBGitLane keeps a lane index number. This number is later used to pick a color.
24 lines
410 B
Objective-C
24 lines
410 B
Objective-C
//
|
|
// PBGitLane.h
|
|
// GitX
|
|
//
|
|
// Created by Pieter de Bie on 27-08-08.
|
|
// Copyright 2008 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
static int PBGITLANE_CURRENT_INDEX = 0;
|
|
|
|
@interface PBGitLane : NSObject {
|
|
NSString* sha;
|
|
int index;
|
|
}
|
|
- (id) initWithCommit: (NSString*) c;
|
|
- (BOOL) isCommit: (NSString*) c;
|
|
|
|
@property(assign) NSString* sha;
|
|
@property(readonly) int index;
|
|
|
|
@end
|