mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
12e2044c34
We don't need the old initialisation anymore
26 lines
399 B
Objective-C
26 lines
399 B
Objective-C
//
|
|
// PBGitRevList.h
|
|
// GitX
|
|
//
|
|
// Created by Pieter de Bie on 17-06-08.
|
|
// Copyright 2008 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
@interface PBGitRevList : NSObject {
|
|
NSArray* commits;
|
|
id grapher;
|
|
id repository;
|
|
NSString* lastSha;
|
|
}
|
|
|
|
- initWithRepository:(id)repo;
|
|
- (void) readCommits;
|
|
|
|
@property(retain) NSArray* commits;
|
|
@property(retain) id grapher;
|
|
|
|
@end
|