mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
20 lines
375 B
Objective-C
20 lines
375 B
Objective-C
//
|
|
// PBRepositoryDocumentController.h
|
|
// GitX
|
|
//
|
|
// Created by Ciarán Walsh on 15/08/2008.
|
|
// Copyright 2008 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "PBGitRevSpecifier.h"
|
|
|
|
|
|
@interface PBRepositoryDocumentController : NSDocumentController
|
|
{
|
|
|
|
}
|
|
|
|
- (id) openRepositoryAtLocation:(NSURL*) url RevSpecifier:(PBGitRevSpecifier*) rev;
|
|
@end
|