/* * AtomShapeDescriptor_impl.hpp * * Created on: Aug 9, 2010 * Author: heber */ #ifndef ATOMSHAPEDESCRIPTOR_IMPL_HPP #define ATOMSHAPEDESCRIPTOR_IMPL_HPP #include "Descriptors/AtomDescriptor_impl.hpp" #include "Shapes/Shape.hpp" class AtomShapeDescriptor_impl : public AtomDescriptor_impl { public: AtomShapeDescriptor_impl(Shape _shape); virtual ~AtomShapeDescriptor_impl(); bool predicate(std::pair atom); private: Shape shape; }; #endif //ATOMSHAPEDESCRIPTOR_IMPL_HPP