mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 15:30:18 +00:00
be507c8230
- Added additional menu for the repository actions - Added action for 'Revealing in Finder'
32 lines
552 B
Objective-C
32 lines
552 B
Objective-C
//
|
|
// PBStashController.h
|
|
// GitX
|
|
//
|
|
// Created by Tomasz Krasnyk on 10-11-27.
|
|
// Copyright (c) 2010 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "PBGitStash.h"
|
|
|
|
@class PBGitRepository;
|
|
|
|
@interface PBStashController : NSObject {
|
|
NSArray *stashes;
|
|
@private
|
|
PBGitRepository *repository;
|
|
}
|
|
@property (nonatomic, retain, readonly) NSArray *stashes;
|
|
|
|
- (id) initWithRepository:(PBGitRepository *) repo;
|
|
|
|
- (void) reload;
|
|
|
|
- (NSArray *) menu;
|
|
|
|
// actions
|
|
- (void) stashLocalChanges;
|
|
- (void) clearAllStashes;
|
|
|
|
@end
|