mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
24 lines
392 B
Objective-C
24 lines
392 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>
|
|
|
|
@interface PBGitLane : NSObject {
|
|
NSString* sha;
|
|
int index;
|
|
}
|
|
- (id) initWithCommit: (NSString*) c;
|
|
- (BOOL) isCommit: (NSString*) c;
|
|
|
|
+ (void) resetColors;
|
|
|
|
@property(assign) NSString* sha;
|
|
@property(readonly) int index;
|
|
|
|
@end
|