mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 15:30:18 +00:00
18 lines
358 B
Objective-C
18 lines
358 B
Objective-C
//
|
|
// PBFileChangesTableView.h
|
|
// GitX
|
|
//
|
|
// Created by Pieter de Bie on 09-10-08.
|
|
// Copyright 2008 Pieter de Bie. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
// File list used in both the staged and unstaged sides of the commit view.
|
|
// datasource and deletage are PBGitIndexController.
|
|
@interface PBFileChangesTableView : NSTableView {
|
|
}
|
|
|
|
@end
|