OEHasAtomName¶
class OEHasAtomName : public OESystem::OEUnaryPredicate<OEChem::OEAtomBase>
This class represents OEHasAtomName functor that identifies atoms (OEAtomBase) with a specific name.
The following methods are publicly inherited from OEUnaryPredicate:
The following methods are publicly inherited from OEUnaryFunction:
Constructors¶
OEHasAtomName(const char *name, const bool trimspaces=false)
Constructs the functor with the provided name. The trimspaces allows matching atoms with names by first trimming off white spaces.
operator()¶
bool operator()(const OEAtomBase &atom) const
Returns true
, if the atom name returned by the
OEAtomBase.GetName
method for the given OEAtomBase
object is equivalent to the name with which the functor is constructed.
CreateCopy¶
OESystem::OEUnaryFunction<OEChem::OEAtomBase , bool> *CreateCopy() const
Deep copy constructor that returns a copy of the object. The memory for the returned OEHasAtomName object is dynamically allocated and owned by the caller.