]> git.saurik.com Git - iphone-api.git/blame - Celestial/AVQueue.h
Adding the SpringBoardUI headers (for Cydget).
[iphone-api.git] / Celestial / AVQueue.h
CommitLineData
2cd8f71b
JF
1/*
2 * Generated by class-dump 3.1.2.
3 *
4 * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2007 by Steve Nygard.
5 */
6
c6e2d7c4 7#import "Foundation/NSObject.h"
2cd8f71b
JF
8
9@class NSMutableArray, NSRecursiveLock;
10
11@interface AVQueue : NSObject
12{
13 NSRecursiveLock *_mutex;
14 NSMutableArray *_items;
15 void *_reserved;
16 unsigned int _flags;
17}
18
19+ (id)avQueue;
20+ (id)queueWithArray:(id)fp8 error:(id *)fp12;
21- (id)initWithError:(id *)fp8;
22- (id)init;
23- (id)initWithArray:(id)fp8 error:(id *)fp12;
24- (void)dealloc;
25- (int)_instantiateItem;
26- (unsigned int)itemCount;
27- (id)itemAtIndex:(unsigned int)fp8;
28- (unsigned int)indexOfItem:(id)fp8;
29- (id)itemAfterItem:(id)fp8;
30- (BOOL)appendItemsFromArray:(id)fp8 error:(id *)fp12;
31- (BOOL)appendItem:(id)fp8 error:(id *)fp12;
32- (void)itemWasAdded:(id)fp8 atIndex:(int)fp12;
33- (BOOL)insertItem:(id)fp8 atIndex:(unsigned int)fp12 error:(id *)fp16;
34- (BOOL)insertItem:(id)fp8 afterItem:(id)fp12 error:(id *)fp16;
35- (void)itemWillBeRemoved:(id)fp8 atIndex:(int)fp12;
36- (BOOL)removeItem:(id)fp8;
37- (BOOL)removeItemAtIndex:(unsigned int)fp8;
38- (void)removeItemsInRange:(struct _NSRange)fp8;
39- (void)removeAllItems;
40
41@end
42