/* * AtomSelectionDescriptor_impl.hpp * * Created on: Jul 16, 2010 * Author: crueger */ #ifndef ATOMSELECTIONDESCRIPTOR_IMPL_HPP_ #define ATOMSELECTIONDESCRIPTOR_IMPL_HPP_ #include "Descriptors/AtomDescriptor_impl.hpp" class AtomSelectionDescriptor_impl : public AtomDescriptor_impl{ public: AtomSelectionDescriptor_impl(); virtual ~AtomSelectionDescriptor_impl(); bool predicate(std::pair atom); protected: // need to overide more than the standard methods to make this fast virtual atom* find(); virtual std::vector findAll(); World::AtomSet& getSelectedAtoms(); }; #endif /* ATOMSELECTIONDESCRIPTOR_IMPL_HPP_ */