Files
gitx/PBWebDiffController.h
2011-06-13 17:51:16 -06:00

20 lines
443 B
Objective-C

//
// PBWebDiffController.h
// GitX
//
// Created by Pieter de Bie on 13-10-08.
// Copyright 2008 Pieter de Bie. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "PBWebController.h"
#import "PBDiffWindowController.h"
// Instantiated in PBDiffWindow.xib, used by PBDiffWindowController
@interface PBWebDiffController : PBWebController {
IBOutlet PBDiffWindowController *diffController;
}
- (void) showDiff:(NSString *)diff;
@end