Files
gitx/PBGitConfig.h
T

20 lines
380 B
Objective-C

//
// PBGitConfig.h
// GitX
//
// Created by Pieter de Bie on 14-10-08.
// Copyright 2008 Pieter de Bie. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "PBGitBinary.h"
#import "PBEasyPipe.h"
@interface PBGitConfig : NSObject {
NSString *repositoryPath;
}
@property (copy) NSString *repositoryPath;
- (id) init;
- (id) initWithRepositoryPath:(NSString *)path;
@end