Files
gitx/PBSourceViewCell.h
T
2011-01-07 12:10:44 -08:00

19 lines
311 B
Objective-C

//
// PBSourceViewCell.h
// GitX
//
// Created by Nathan Kinsinger on 1/7/10.
// Copyright 2010 Nathan Kinsinger. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "PBIconAndTextCell.h"
@interface PBSourceViewCell : PBIconAndTextCell {
NSString *badge;
}
@property (assign) NSString *badge;
@end