Files
gitx/Commands/PBStashCommand.h
T
2010-11-06 13:20:13 +01:00

20 lines
438 B
Objective-C

//
// PBStashCommand.h
// GitX
//
// Created by Tomasz Krasnyk on 10-11-06.
// Copyright 2010 __MyCompanyName__. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "PBCommand.h"
#import "PBGitRepository.h"
@interface PBStashCommand : PBCommand {
PBGitRepository *repository;
NSArray *arguments;
}
- initWithDisplayName:(NSString *) aDisplayName arguments:(NSArray *) args repository:(PBGitRepository *) repo;
@end