mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 15:30:18 +00:00
26 lines
490 B
Objective-C
26 lines
490 B
Objective-C
//
|
|
// PBGitSVBranchItem.h
|
|
// GitX
|
|
//
|
|
// Created by Nathan Kinsinger on 3/2/10.
|
|
// Copyright 2010 Nathan Kinsinger. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "PBSourceViewItem.h"
|
|
|
|
|
|
@interface PBGitSVBranchItem : PBSourceViewItem {
|
|
BOOL isCheckedOut;
|
|
NSNumber *behind;
|
|
NSNumber *ahead;
|
|
}
|
|
|
|
+ (id)branchItemWithRevSpec:(PBGitRevSpecifier *)revSpecifier;
|
|
|
|
@property (assign) BOOL isCheckedOut;
|
|
@property (assign) NSNumber *behind;
|
|
@property (assign) NSNumber *ahead;
|
|
|
|
@end
|