00001 /*************************************************************************** 00002 * bitset.h 00003 * 00004 * Sun Feb 1 12:12:39 2004 00005 * Copyright 2004 thierry schartz 00006 * thierry.schartz@bluebottle.com 00007 ****************************************************************************/ 00008 /* 00009 * This program is free software; you can redistribute it and/or modify 00010 * it under the terms of the GNU General Public License as published by 00011 * the Free Software Foundation; either version 2 of the License, or 00012 * (at your option) any later version. 00013 * 00014 * This program is distributed in the hope that it will be useful, 00015 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00016 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00017 * GNU Library General Public License for more details. 00018 * 00019 * You should have received a copy of the GNU General Public License 00020 * along with this program; if not, write to the Free Software 00021 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00022 */ 00023 00024 #ifndef _BITSET_H 00025 #define _BITSET_H 00026 00027 #ifdef WIN32 00028 #include <windows.h> 00029 #endif 00030 00031 00032 namespace ngn { 00033 namespace core { 00034 00035 class Bitset 00036 { 00037 public: 00038 Bitset(); 00039 virtual ~Bitset(); 00040 00041 // resize bitset 00042 void resize( int size ); 00043 // set a bit to value 00044 void setBit( int bit, bool value=true ); 00045 // get bit state 00046 int getBit( int bit ); 00047 // clear bitset 00048 void clear(); 00049 00050 private: 00051 unsigned int *m_bits; 00052 int m_size; 00053 }; 00054 00055 }//core 00056 }//ngn 00057 00058 #endif /* _BITSET_H */ 00059 00060