mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
1bad051779
1) stop a threading issue with old commits being added after the commits array was reset
2) stop using --early-output (shouldn't there be an incremental output option???)
32 lines
633 B
Objective-C
32 lines
633 B
Objective-C
//
|
|
// PBGitHistoryGrapher.h
|
|
// GitX
|
|
//
|
|
// Created by Nathan Kinsinger on 2/20/10.
|
|
// Copyright 2010 Nathan Kinsinger. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
#define kCurrentQueueKey @"kCurrentQueueKey"
|
|
#define kNewCommitsKey @"kNewCommitsKey"
|
|
|
|
|
|
@class PBGitGrapher;
|
|
|
|
|
|
@interface PBGitHistoryGrapher : NSObject {
|
|
id delegate;
|
|
NSOperationQueue *currentQueue;
|
|
|
|
NSMutableSet *searchSHAs;
|
|
PBGitGrapher *grapher;
|
|
BOOL viewAllBranches;
|
|
}
|
|
|
|
- (id) initWithBaseCommits:(NSSet *)commits viewAllBranches:(BOOL)viewAll queue:(NSOperationQueue *)queue delegate:(id)theDelegate;
|
|
- (void) graphCommits:(NSArray *)revList;
|
|
|
|
@end
|