OEHasAtomicNum¶
class OEHasAtomicNum : public OESystem::OEUnaryPredicate<OEChem::OEAtomBase>
This class represents OEHasAtomicNum functor that identifies atoms (OEAtomBase) with a specific atomic number.
The following methods are publicly inherited from OEUnaryPredicate:
The following methods are publicly inherited from OEUnaryFunction:
Constructors¶
OEHasAtomicNum(unsigned int an)
Constructs the functor with the internal atomic number.
operator()¶
bool operator()(const OEAtomBase &atom) const
Returns true
, if the atomic number returned by the
OEAtomBase::GetAtomicNum
method for the given
OEAtomBase object is equivalent to the atomic
number 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 OEHasAtomicNum object is dynamically allocated and owned by the caller.
The returned copy should be deallocated using C++ delete operator in order to prevent a memory leak.