Files
gitx/Commands/PBCommandWithParameter.h
Tomasz Krasnyk cc5c93c2b6 - stashes can be created with optional message
- added clearing all stashes
- added possibility to ignore files with given extension
- submodules are now showed
- submodules can be opened
2010-11-07 23:37:41 +01:00

24 lines
656 B
Objective-C

//
// PBCommandWithParameter.h
// GitX
//
// Created by Tomasz Krasnyk on 10-11-06.
// Copyright 2010 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "PBCommand.h"
@interface PBCommandWithParameter : PBCommand {
PBCommand *command;
NSString *parameterName;
NSString *parameterDisplayName;
}
@property (nonatomic, retain, readonly) PBCommand *command;
@property (nonatomic, retain, readonly) NSString *parameterName;
@property (nonatomic, retain, readonly) NSString *parameterDisplayName;
- initWithCommand:(PBCommand *) command parameterName:(NSString *) param parameterDisplayName:(NSString *) paramDisplayName;
@end