Files
gitx/PBGitGrapher.h
T
Yoshimasa Niwa 003977dad9 FIX: memory leak(delete will not be called) and graph glitch
* When we are using subtree merge on git repository,
  GitX may show the slipped graph line.
* Behind this glitch, GitX may leak the PBGitLane object.
2009-10-24 14:56:29 +08:00

23 lines
441 B
Objective-C

//
// PBGitGrapher.h
// GitX
//
// Created by Pieter de Bie on 17-06-08.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "PBGitCommit.h"
#import "PBGitGraphLine.h"
#import "PBGraphCellInfo.h"
@interface PBGitGrapher : NSObject {
PBGraphCellInfo *previous;
void *pl;
void *endLane;
}
- (id) initWithRepository:(PBGitRepository *)repo;
- (void) decorateCommit:(PBGitCommit *)commit;
@end