00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 #import "NSCodingProtocol.h"
00010 #import "NSCopyingProtocol.h"
00011
00012 @class NSString;
00013
00014 @interface LKFilter : NSObject <NSCopying, NSCoding>
00015 {
00016 unsigned int _type;
00017 NSString *_name;
00018 BOOL _enabled;
00019 struct _LKAttrList *_attr;
00020 }
00021
00022 + (id)filterWithName:(id)fp8;
00023 - (id)initWithName:(id)fp8;
00024 - (id)type;
00025 - (id)name;
00026 - (void)setName:(id)fp8;
00027 - (BOOL)enabled;
00028 - (void)setEnabled:(BOOL)fp8;
00029 - (void)setValue:(id)fp8 forKey:(id)fp12;
00030 - (id)valueForKey:(id)fp8;
00031 - (void)dealloc;
00032 - (void *)LK_copyRenderValue;
00033 - (id)copyWithZone:(struct _NSZone *)fp8;
00034 - (void)encodeWithCoder:(id)fp8;
00035 - (id)initWithCoder:(id)fp8;
00036
00037 @end
00038