mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
29 lines
586 B
Objective-C
29 lines
586 B
Objective-C
//
|
|
// PBGitCommit.h
|
|
// GitTest
|
|
//
|
|
// Created by Pieter de Bie on 13-06-08.
|
|
// Copyright 2008 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "PBGitRepository.h"
|
|
|
|
@interface PBGitCommit : NSObject {
|
|
NSString* sha;
|
|
NSString* subject;
|
|
NSString* author;
|
|
PBGitRepository* repository;
|
|
}
|
|
|
|
- initWithRepository:(PBGitRepository*) repo andSha:(NSString*) sha;
|
|
|
|
@property (copy) NSString* sha;
|
|
@property (copy) NSString* subject;
|
|
@property (copy) NSString* author;
|
|
|
|
@property (readonly) NSString* details;
|
|
|
|
@property (retain) PBGitRepository* repository;
|
|
@end
|