--- trunk/src/selection/IndexFinder.hpp 2005/04/15 22:04:00 507 +++ trunk/src/selection/IndexFinder.hpp 2005/12/02 15:38:03 770 @@ -41,7 +41,7 @@ #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 { @@ -49,15 +49,15 @@ namespace oopse { 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: void init(); SimInfo* info_; - std::vector bitSets_; + std::vector bitSets_; int nStuntDoubles_; };