Files
gitx/PBGitConfig.h
T
Nathan Kinsinger 1c4601dd52 PBGitConfig: Change name of -initWithRepository:
Better indicates the information needed and stops a compiler warning about wrong type (there are other initWithRepository: methods that take a different type).
2010-02-19 22:54:49 -07:00

20 lines
328 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;
}
- init;
- initWithRepositoryPath:(NSString *)path;
@end