Testing: add missing file
[GitX.git] / PBCommitList.h
blob069aeae2981fd93ac00b516204fc4e0ee4fbaf5a
1 //
2 // PBCommitList.h
3 // GitX
4 //
5 // Created by Pieter de Bie on 9/11/08.
6 // Copyright 2008 __MyCompanyName__. All rights reserved.
7 //
9 #import <Cocoa/Cocoa.h>
10 #import <WebKit/WebView.h>
11 #import "PBGitHistoryController.h"
13 @class PBWebHistoryController;
15 @interface PBCommitList : NSTableView {
16 IBOutlet WebView* webView;
17 IBOutlet PBWebHistoryController *webController;
18 IBOutlet PBGitHistoryController *controller;
20 NSPoint mouseDownPoint;
23 @property (readonly) NSPoint mouseDownPoint;
24 @end