mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
0fccf5a3bb
These aren't used for now anyway, and this looks cleaner.
24 lines
412 B
Objective-C
24 lines
412 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;
|
|
NSArray* parameters;
|
|
id repository;
|
|
NSString* currentRef;
|
|
}
|
|
|
|
- initWithRepository:(id)repo andRevListParameters:(NSArray*) params;
|
|
- readCommits;
|
|
|
|
@property(retain) NSArray* commits;
|
|
@end
|