Files
gitx/PBStashContentController.h
T
2011-06-08 15:13:17 -06:00

24 lines
468 B
Objective-C

//
// PBStashContentController.h
// GitX
//
// Created by David Catmull on 20-06-11.
// Copyright 2011. All rights reserved.
//
#import "PBViewController.h"
#import "PBWebHistoryController.h"
@class PBGitStash;
@class PBWebStashController;
// Controls the view displaying a stash diff
@interface PBStashContentController : PBViewController {
IBOutlet id webView;
IBOutlet PBWebHistoryController *webController;
}
- (void) showStash:(PBGitStash*)stash;
@end