mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
24 lines
512 B
Objective-C
24 lines
512 B
Objective-C
//
|
|
// 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;
|
|
@end |