mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
19 lines
364 B
Objective-C
19 lines
364 B
Objective-C
//
|
|
// PBWebHistoryController.h
|
|
// GitTest
|
|
//
|
|
// Created by Pieter de Bie on 14-06-08.
|
|
// Copyright 2008 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "PBWebCommitController.h"
|
|
|
|
@class PBGitHistoryController;
|
|
|
|
@interface PBWebHistoryController : PBWebCommitController {
|
|
IBOutlet PBGitHistoryController* historyController;
|
|
}
|
|
|
|
@end
|