Testing: add missing file
[GitX.git] / PBCLIProxy.h
blobeb4d735601cd2c90495fa381de39d12504219e28
1 //
2 // PBCLIProxy.h
3 // GitX
4 //
5 // Created by CiarĂ¡n Walsh on 15/08/2008.
6 // Copyright 2008 __MyCompanyName__. All rights reserved.
7 //
9 #import <Cocoa/Cocoa.h>
12 @interface PBCLIProxy : NSObject
14 NSConnection *connection;
16 @property (retain) NSConnection* connection;
17 @end
19 #define ConnectionName @"GitX DO Connection"
20 #define PBCLIProxyErrorDomain @"PBCLIProxyErrorDomain"
22 @protocol GitXCliToolProtocol
23 - (BOOL)openRepository:(NSURL*)repositoryPath arguments: (NSArray*) args error:(NSError**)error;
24 - (void)openDiffWindowWithDiff:(NSString *)diff;
25 @end