ResKnife/Cocoa/Plug-Ins/Template Editor/Element.h
2002-02-23 03:40:24 +00:00

13 lines
261 B
Objective-C

#import <Foundation/Foundation.h>
@interface Element : NSObject
{
NSString *label;
NSString *type;
}
- (id)initWithType:(NSString *)typeValue andLabel:(NSString *)labelValue;
+ (id)elementOfType:(NSString *)typeValue withLabel:(NSString *)labelValue;
@end