--- trunk/src/selection/IndexFinder.hpp 2005/03/09 18:48:14 416 +++ trunk/src/selection/IndexFinder.hpp 2005/12/02 15:38:03 770 @@ -41,26 +41,26 @@ #ifndef SELECTION_INDEXFINDER_HPP #define SELECTION_INDEXFINDER_HPP #include "brains/SimInfo.hpp" -#include "utils/BitSet.hpp" +#include "utils/OOPSEBitSet.hpp" #include "primitives/StuntDouble.hpp" namespace oopse { -class IndexFinder { - public: - IndexFinder(SimInfo* si); + class IndexFinder { + public: + IndexFinder(SimInfo* si); - BitSet find(int molIndex); - BitSet find(int begMolIndex, int endMolIndex); + OOPSEBitSet find(int molIndex); + OOPSEBitSet find(int begMolIndex, int endMolIndex); - private: + private: - void init(); + void init(); - SimInfo* info_; - std::vector bitSets_; - int nStuntDoubles_; + SimInfo* info_; + std::vector bitSets_; + int nStuntDoubles_; -}; + }; } #endif