Files
gitx/PBWebHistoryController.h
T
2008-10-10 21:59:21 +02:00

26 lines
540 B
Objective-C

//
// PBWebGitController.h
// GitTest
//
// Created by Pieter de Bie on 14-06-08.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "PBWebController.h"
#import "PBGitCommit.h"
#import "PBGitHistoryController.h"
@interface PBWebHistoryController : PBWebController {
IBOutlet PBGitHistoryController* historyController;
NSString* currentSha;
NSString* diff;
}
- (void) changeContentTo: (PBGitCommit *) content;
- (void) sendKey: (NSString*) key;
@property (readonly) NSString* diff;
@end