HistoryView: Remove raw view
[GitX.git] / PBGitRevList.h
blob2f71c3fface6ef053d8c05987d1d55d857d04e3d
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>
12 @interface PBGitRevList : NSObject {
13 NSArray* commits;
14 id repository;
15 NSString* lastSha;
18 - initWithRepository:(id)repo;
19 - (void) readCommitsForce: (BOOL) force;
20 - (void) reload;
22 @property(retain) NSArray* commits;
24 @end