]>
git.saurik.com Git - apple/xnu.git/blob - libkern/libkern/c++/OSCollectionIterator.h
387b6355d37152ce0575bfe01dfa59e4d322d11f
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
22 /* IOCollectionIterator.h created by gvdl on Fri 1998-10-30 */
24 #ifndef _OS_OSCOLLECTIONITERATOR_H
25 #define _OS_OSCOLLECTIONITERATOR_H
27 #include <libkern/c++/OSIterator.h>
32 @class OSCollectionIterator
34 OSCollectionIterator objects provide a consistent mechanism to iterate through all OSCollection derived collections.
36 class OSCollectionIterator
: public OSIterator
38 OSDeclareDefaultStructors(OSCollectionIterator
)
41 const OSCollection
*collection
;
43 unsigned int initialUpdateStamp
;
48 @function withCollection
49 @abstract A static constructor function which creates and initializes an instance of OSCollectionIterator for the provided collection object.
50 @param inColl The OSCollection derived collection object to be iteratated.
51 @result Returns a new instance of OSCollection or 0 on failure.
53 static OSCollectionIterator
*withCollection(const OSCollection
*inColl
);
56 @function withCollection
57 @abstract A member function to initialize the intance of OSCollectionIterator with the provided colleciton object.
58 @param inColl The OSCollection derived collection object to be iteratated.
59 @result Returns true if the initialization was successful or false on failure.
61 virtual bool initWithCollection(const OSCollection
*inColl
);
64 @abstract A member function to release and deallocate all resources created or used by the OSCollectionIterator object.
65 @discussion This function should not be called directly, use release() instead.
71 @abstract A member function which resets the iterator to begin the next iteration from the beginning of the collection.
77 @abstract A member function for determining if the collection was modified during iteration.
79 virtual bool isValid();
82 @function getNextObject
83 @abstract A member function to get the next object in the collection being iterated.
84 @result Returns the next object in the collection or 0 when the end has been reached.
86 virtual OSObject
*getNextObject();
89 #endif /* !_OS_OSCOLLECTIONITERATOR_H */