mirror of
https://github.com/textmate/textmate.git
synced 2026-04-28 03:00:34 -04:00
8 lines
300 B
Objective-C
8 lines
300 B
Objective-C
@interface CWItem : NSObject <NSCopying>
|
|
@property (nonatomic) NSString* path;
|
|
@property (nonatomic) BOOL commit;
|
|
@property (nonatomic) NSString* scmStatus;
|
|
+ (CWItem*)itemWithPath:(NSString*)aPath andSCMStatus:(NSString*)aStatus commit:(BOOL)state;
|
|
- (NSComparisonResult)compare:(CWItem*)item;
|
|
@end
|