PixelLightAPI
.
|
00001 /*********************************************************\ 00002 * File: BitsetIterator.h * 00003 * 00004 * Copyright (C) 2002-2012 The PixelLight Team (http://www.pixellight.org/) 00005 * 00006 * This file is part of PixelLight. 00007 * 00008 * PixelLight is free software: you can redistribute it and/or modify 00009 * it under the terms of the GNU Lesser General Public License as published by 00010 * the Free Software Foundation, either version 3 of the License, or 00011 * (at your option) any later version. 00012 * 00013 * PixelLight is distributed in the hope that it will be useful, 00014 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00015 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00016 * GNU Lesser General Public License for more details. 00017 * 00018 * You should have received a copy of the GNU Lesser General Public License 00019 * along with PixelLight. If not, see <http://www.gnu.org/licenses/>. 00020 \*********************************************************/ 00021 00022 00023 #ifndef __PLCORE_CONTAINER_BITSETITERATOR_H__ 00024 #define __PLCORE_CONTAINER_BITSETITERATOR_H__ 00025 #pragma once 00026 00027 00028 //[-------------------------------------------------------] 00029 //[ Includes ] 00030 //[-------------------------------------------------------] 00031 #include "PLCore/Container/IteratorImpl.h" 00032 00033 00034 //[-------------------------------------------------------] 00035 //[ Namespace ] 00036 //[-------------------------------------------------------] 00037 namespace PLCore { 00038 00039 00040 //[-------------------------------------------------------] 00041 //[ Forward declarations ] 00042 //[-------------------------------------------------------] 00043 class Bitset; 00044 00045 00046 //[-------------------------------------------------------] 00047 //[ Classes ] 00048 //[-------------------------------------------------------] 00049 /** 00050 * @brief 00051 * Bit set iterator class 00052 */ 00053 class BitsetIterator : public IteratorImpl<bool> { 00054 00055 00056 //[-------------------------------------------------------] 00057 //[ Friends ] 00058 //[-------------------------------------------------------] 00059 friend class Bitset; 00060 00061 00062 //[-------------------------------------------------------] 00063 //[ Private functions ] 00064 //[-------------------------------------------------------] 00065 private: 00066 /** 00067 * @brief 00068 * Constructor 00069 * 00070 * @param[in] lstBitset 00071 * Bitset to operate on 00072 * @param[in] nIndex 00073 * Start index, if >= GetNumOfElements() the index is set to the last valid index 00074 */ 00075 BitsetIterator(const Bitset &lstBitset, uint32 nIndex); 00076 00077 /** 00078 * @brief 00079 * Constructor 00080 * 00081 * @param[in] lstBitset 00082 * Bitset to operate on 00083 * 00084 * @note 00085 * - The iterator will start at the last element 00086 */ 00087 BitsetIterator(const Bitset &lstBitset); 00088 00089 /** 00090 * @brief 00091 * Copy constructor 00092 * 00093 * @param[in] cSource 00094 * Source to copy from 00095 */ 00096 BitsetIterator(const BitsetIterator &cSource); 00097 00098 /** 00099 * @brief 00100 * Destructor 00101 */ 00102 virtual ~BitsetIterator(); 00103 00104 00105 //[-------------------------------------------------------] 00106 //[ Private data ] 00107 //[-------------------------------------------------------] 00108 private: 00109 const Bitset *m_plstBitset; /**< Bitset to operate on (always valid!) */ 00110 uint32 m_nNextID; /**< ID of the next element */ 00111 00112 00113 //[-------------------------------------------------------] 00114 //[ Private virtual IteratorImpl functions ] 00115 //[-------------------------------------------------------] 00116 private: 00117 virtual IteratorImpl<bool> *Clone() const override; 00118 virtual bool HasNext() const override; 00119 virtual bool &Next() override; 00120 virtual bool HasPrevious() const override; 00121 virtual bool &Previous() override; 00122 00123 00124 }; 00125 00126 00127 //[-------------------------------------------------------] 00128 //[ Namespace ] 00129 //[-------------------------------------------------------] 00130 } // PLCore 00131 00132 00133 #endif // __PLCORE_CONTAINER_BITSETITERATOR_H__
|