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