12 lines
205 B
Objective-C
12 lines
205 B
Objective-C
#import <ObjFW/OFString.h>
|
|
|
|
@interface OGComboBoxItem: OFObject
|
|
{
|
|
OFString *label;
|
|
}
|
|
|
|
@property (copy) OFString *label;
|
|
|
|
+ comboBoxItemWithLabel: (OFString*)label;
|
|
- initWithLabel: (OFString*)label;
|
|
@end
|