Files
gitx/PBRepositoryDocumentController.h
T
Pieter de Bie 86606ef815 Add a --commit option to the CLI client
This changes a lot of code, so quick review:

* RepositoryDocumentController now returns the document without selecting a ref
* PBGitWindowController now optionally shows the default view, or selects no view at all
* PBGitRepository keeps a pointer to its WindowController so that it can change views
2008-09-26 23:22:15 +02:00

20 lines
332 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) documentForLocation:(NSURL*) url;
@end