mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
cc5c93c2b6
- added clearing all stashes - added possibility to ignore files with given extension - submodules are now showed - submodules can be opened
18 lines
327 B
Objective-C
18 lines
327 B
Objective-C
//
|
|
// PBOpenDocumentCommand.h
|
|
// GitX
|
|
//
|
|
// Created by Tomasz Krasnyk on 10-11-07.
|
|
// Copyright 2010 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "PBCommand.h"
|
|
|
|
@interface PBOpenDocumentCommand : PBCommand {
|
|
NSURL *documentURL;
|
|
}
|
|
|
|
- (id) initWithDocumentAbsolutePath:(NSString *) path;
|
|
@end
|