17 lines
284 B
Objective-C
17 lines
284 B
Objective-C
//
|
|
// BWTransparentTableViewCell.h
|
|
// BWToolkit
|
|
//
|
|
// Created by Brandon Walkin (www.brandonwalkin.com)
|
|
// All code is provided under the New BSD license.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface BWTransparentTableViewCell : NSTextFieldCell
|
|
{
|
|
BOOL mIsEditingOrSelecting;
|
|
}
|
|
|
|
@end
|