mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
f705bd46ab
* 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
25 lines
392 B
Objective-C
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
|