#ifndef ATOMOFMOLECULEDESCRIPTOR_IMPL_HPP #define ATOMOFMOLECULEDESCRIPTOR_IMPL_HPP // include config.h #ifdef HAVE_CONFIG_H #include #endif #include "Descriptors/AtomDescriptor_impl.hpp" class AtomOfMoleculeDescriptor_impl : public AtomDescriptor_impl { public: AtomOfMoleculeDescriptor_impl(moleculeId_t _id); virtual ~AtomOfMoleculeDescriptor_impl(); bool predicate(std::pair atom); private: moleculeId_t id; }; #endif //ATOMOFMOLECULEDESCRIPTOR_IMPL_HPP