mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 15:30:18 +00:00
25 lines
521 B
Objective-C
25 lines
521 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 PBWebStashController *unstagedController;
|
|
IBOutlet PBWebStashController *stagedController;
|
|
}
|
|
|
|
- (void) showStash:(PBGitStash*)stash;
|
|
|
|
@end
|