00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 #import "NSCopyingProtocol.h"
00010
00011 @class NSMutableArray, NSString, OADBlip;
00012
00013 @interface OADBlipRef : NSObject <NSCopying>
00014 {
00015 int mIndex;
00016 NSString *mName;
00017 NSMutableArray *mEffects;
00018 OADBlip *mBlip;
00019 }
00020
00021 + (int)blipTypeForExtension:(id)fp8;
00022 + (id)inflatedExtensionForGzippedExtension:(id)fp8;
00023 - (id)init;
00024 - (id)initWithIndex:(long)fp8 name:(id)fp12;
00025 - (id)copyWithZone:(struct _NSZone *)fp8;
00026 - (void)dealloc;
00027 - (long)index;
00028 - (id)name;
00029 - (void)setName:(id)fp8;
00030 - (void)addEffect:(id)fp8;
00031 - (unsigned int)effectCount;
00032 - (id)effectAtIndex:(unsigned int)fp8;
00033 - (id)blip;
00034 - (void)setBlip:(id)fp8;
00035 - (void)setFilename:(id)fp8 data:(id)fp12;
00036 - (void)setPath:(id)fp8;
00037
00038 @end
00039