mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
17 lines
300 B
Objective-C
17 lines
300 B
Objective-C
//
|
|
// PBQLOutlineView.h
|
|
// GitX
|
|
//
|
|
// Created by Pieter de Bie on 6/17/08.
|
|
// Copyright 2008 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "PBGitHistoryController.h"
|
|
|
|
@interface PBQLOutlineView : NSOutlineView {
|
|
IBOutlet PBGitHistoryController* controller;
|
|
}
|
|
|
|
@end
|