mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 15:30:18 +00:00
cc5c93c2b6
- added clearing all stashes - added possibility to ignore files with given extension - submodules are now showed - submodules can be opened
21 lines
447 B
Objective-C
21 lines
447 B
Objective-C
//
|
|
// PBGitSVStashItem.h
|
|
// GitX
|
|
//
|
|
// Created by Tomasz Krasnyk on 10-11-05.
|
|
// Copyright 2010 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "PBSourceViewItem.h"
|
|
#import "PBPresentable.h"
|
|
|
|
|
|
@interface PBGitMenuItem : PBSourceViewItem {
|
|
id<PBPresentable> sourceObject;
|
|
}
|
|
@property (nonatomic, retain, readonly) id<PBPresentable> sourceObject;
|
|
|
|
- initWithSourceObject:(id<PBPresentable>) anObject;
|
|
@end
|