mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 15:30:18 +00:00
20 lines
443 B
Objective-C
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
|