Files
gitx/PBSourceViewCell.h
T
German Laullon 63289230e1 new badge
2011-01-04 20:08:23 -08:00

22 lines
372 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 {
BOOL isCheckedOut;
NSNumber *behind;
}
@property (assign) BOOL isCheckedOut;
@property (assign) NSNumber *behind;
@end