Files
gitx/PBGitRevList.h
T
Pieter de Bie f705bd46ab Merge branch 'insta-decorate'
* insta-decorate:
  Add framework to support removing refs
  Show refs in HTML view
  Allow copy and pasting of web source by pressing 'c'
  Refactor cellInfo structure
  Only decorate if we need to
  Multithread test
  Add objective c diff header

Conflicts:
	GitX.xcodeproj/project.pbxproj
2008-09-19 19:22:40 +02:00

25 lines
392 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 repository;
NSString* lastSha;
}
- initWithRepository:(id)repo;
- (void) readCommitsForce: (BOOL) force;
- (void) reload;
@property(retain) NSArray* commits;
@end