public
Description: A gitk clone for OS X
Homepage: http://gitx.frim.nl
Clone URL: git://github.com/pieter/gitx.git
Click here to lend your support to: gitx and make a donation at www.pledgie.com !
pieter (author)
Tue Oct 28 15:09:25 -0700 2008
commit  4b11589c78f6ae78d601e5790d98b26d14797e8a
tree    9ad82f32ccd1f68a7348d6b90983bd9ff15a3fd9
parent  9382cbf266013f67a2f3b7faa8c0cb5238652363
gitx / PBCLIProxy.h
100644 25 lines (20 sloc) 0.561 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//
// PBCLIProxy.h
// GitX
//
// Created by CiarĂ¡n Walsh on 15/08/2008.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
 
#import <Cocoa/Cocoa.h>
 
 
@interface PBCLIProxy : NSObject
{
NSConnection *connection;
}
@property (retain) NSConnection* connection;
@end
 
#define ConnectionName @"GitX DO Connection"
#define PBCLIProxyErrorDomain @"PBCLIProxyErrorDomain"
 
@protocol GitXCliToolProtocol
- (BOOL)openRepository:(NSURL*)repositoryPath arguments: (NSArray*) args error:(NSError**)error;
- (void)openDiffWindowWithDiff:(NSString *)diff;
@end