mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
26 lines
642 B
Objective-C
26 lines
642 B
Objective-C
//
|
|
// PBViewController.h
|
|
// GitX
|
|
//
|
|
// Created by Pieter de Bie on 22-09-08.
|
|
// Copyright 2008 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "PBGitRepository.h"
|
|
#import "PBGitWindowController.h"
|
|
|
|
@interface PBViewController : NSViewController {
|
|
__weak PBGitRepository *repository;
|
|
__weak PBGitWindowController *superController;
|
|
|
|
IBOutlet NSToolbar *viewToolbar;
|
|
}
|
|
|
|
@property (readonly) __weak PBGitRepository *repository;
|
|
@property (readonly) NSToolbar *viewToolbar;
|
|
|
|
- (id)initWithRepository:(PBGitRepository *)theRepository superController:(PBGitWindowController *)controller;
|
|
- (void) removeView;
|
|
@end
|