Files
gitx/PBGitHistoryGrapher.h
T
Nathan Kinsinger 1bad051779 Bugfix: fix duplicate commits in the history view
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???)
2010-07-04 09:45:52 -06:00

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