mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
26 lines
445 B
Objective-C
26 lines
445 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>
|
|
|
|
@class PBGitRepository;
|
|
|
|
@interface PBGitRevList : NSObject {
|
|
NSArray* commits;
|
|
PBGitRepository *repository;
|
|
NSString* lastSha;
|
|
}
|
|
|
|
- initWithRepository:(PBGitRepository *)repo;
|
|
- (void) readCommitsForce: (BOOL) force;
|
|
- (void) reload;
|
|
|
|
@property(retain) NSArray* commits;
|
|
|
|
@end
|