/headers/Celestial/AVQueue.h

gehe zur Dokumentation dieser Datei
00001 /*
00002  *     Generated by class-dump 3.1.1.
00003  *
00004  *     class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2006 by Steve Nygard.
00005  */
00006 
00007 #import "NSObject.h"
00008 
00009 @class NSMutableArray, NSRecursiveLock;
00010 
00011 @interface AVQueue : NSObject
00012 {
00013     NSRecursiveLock *_mutex;
00014     NSMutableArray *_items;
00015     void *_reserved;
00016     unsigned int _flags;
00017 }
00018 
00019 + (id)avQueue;
00020 + (id)queueWithArray:(id)fp8 error:(id *)fp12;
00021 - (id)initWithError:(id *)fp8;
00022 - (id)init;
00023 - (id)initWithArray:(id)fp8 error:(id *)fp12;
00024 - (void)dealloc;
00025 - (int)_instantiateItem;
00026 - (unsigned int)itemCount;
00027 - (id)itemAtIndex:(unsigned int)fp8;
00028 - (unsigned int)indexOfItem:(id)fp8;
00029 - (id)itemAfterItem:(id)fp8;
00030 - (BOOL)appendItemsFromArray:(id)fp8 error:(id *)fp12;
00031 - (BOOL)appendItem:(id)fp8 error:(id *)fp12;
00032 - (void)itemWasAdded:(id)fp8;
00033 - (BOOL)insertItem:(id)fp8 atIndex:(unsigned int)fp12 error:(id *)fp16;
00034 - (BOOL)insertItem:(id)fp8 afterItem:(id)fp12 error:(id *)fp16;
00035 - (void)itemWillBeRemoved:(id)fp8;
00036 - (BOOL)removeItem:(id)fp8;
00037 - (BOOL)removeItemAtIndex:(unsigned int)fp8;
00038 - (void)removeItemsInRange:(struct _NSRange)fp8;
00039 - (void)removeAllItems;
00040 
00041 @end
00042