Files
gitx/PBGitRevList.h
T
Pieter de Bie 12e2044c34 Simplify PBGitRevList
We don't need the old initialisation anymore
2008-09-12 18:03:55 +02:00

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