mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
b4c2a4f3fa
This frees the std vector and its contents on dealloc. We also fresh up the header a bit
25 lines
461 B
Objective-C
25 lines
461 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;
|
|
int curLane;
|
|
|
|
NSDictionary *refs;
|
|
}
|
|
|
|
- (id) initWithRepository:(PBGitRepository *)repo;
|
|
- (void) decorateCommit:(PBGitCommit *)commit;
|
|
@end
|