16 lines
254 B
Objective-C
16 lines
254 B
Objective-C
//
|
|
// RoundBackgroundCell.h
|
|
// Cog
|
|
//
|
|
// Created by Zaphod Beeblebrox on 4/28/06.
|
|
// Copyright 2006 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
@interface RoundBackgroundCell : NSTextFieldCell {
|
|
NSBezierPath *path;
|
|
}
|
|
|
|
@end
|