Testing: add missing file
[GitX.git] / PBGitRevList.h
blob42bc82af3cbcdb388b06c5a77c08a7d3a9ac3d71
1 //
2 // PBGitRevList.h
3 // GitX
4 //
5 // Created by Pieter de Bie on 17-06-08.
6 // Copyright 2008 __MyCompanyName__. All rights reserved.
7 //
9 #import <Cocoa/Cocoa.h>
11 @class PBGitRepository;
13 @interface PBGitRevList : NSObject {
14 NSArray* commits;
15 PBGitRepository *repository;
16 NSString* lastSha;
19 - initWithRepository:(PBGitRepository *)repo;
20 - (void) readCommitsForce: (BOOL) force;
21 - (void) reload;
23 @property(retain) NSArray* commits;
25 @end