// // PBDiffWindowController.h // GitX // // Created by Pieter de Bie on 13-10-08. // Copyright 2008 Pieter de Bie. All rights reserved. // #import @class PBGitCommit; @interface PBDiffWindowController : NSWindowController { NSString *diff; } + (void) showDiffWindowWithFiles:(NSArray *)filePaths fromCommit:(PBGitCommit *)startCommit diffCommit:(PBGitCommit *)diffCommit; - (id) initWithDiff:(NSString *)diff; @property (readonly) NSString *diff; @end