Files
gitx/PBGitSVRemoteItem.h
T
2011-01-07 00:37:29 -08:00

22 lines
348 B
Objective-C

//
// PBGitSVRemoteItem.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 PBGitSVRemoteItem : PBSourceViewItem {
BOOL alert;
}
@property (assign) BOOL alert;
+ (id)remoteItemWithTitle:(NSString *)title;
@end