66#ifndef LASS_GUARDIAN_OF_INCLUSION_UTIL_CALLBACK_3_H
67#define LASS_GUARDIAN_OF_INCLUSION_UTIL_CALLBACK_3_H
94 typename P1,
typename P2,
typename P3
101 typedef SharedPtr< impl::Dispatcher3<P1, P2, P3> > TDispatcherPtr;
113 template <
typename FunctionType>
115 dispatcher_(new impl::Dispatcher3Function<P1, P2, P3, FunctionType>(iFunction))
121 template <
typename ObjectPtr,
typename Method>
123 dispatcher_(new impl::Dispatcher3Method<P1, P2, P3, ObjectPtr, Method>(iObject, iMethod))
130 dispatcher_(iOther.dispatcher_)
137 dispatcher_(std::move(iOther.dispatcher_))
157 dispatcher_ = std::move(iOther.dispatcher_);
163 void operator()(
typename util::CallTraits<P1>::TParam iP1,
typename util::CallTraits<P2>::TParam iP2,
typename util::CallTraits<P3>::TParam iP3)
const
167 dispatcher_->call(iP1, iP2, iP3);
185 return dispatcher_.isEmpty();
192 return dispatcher_.isEmpty();
197 explicit operator bool()
const
199 return !dispatcher_.isEmpty() ;
206 dispatcher_.swap(iOther.dispatcher_);
214 if (dispatcher_ == iOther.dispatcher_)
218 return dispatcher_ && dispatcher_->isEquivalent(iOther.dispatcher_.get());
221 const TDispatcherPtr& dispatcher()
const
228 TDispatcherPtr dispatcher_;
236template<
typename P1,
typename P2,
typename P3>
247template <
typename P1,
typename P2,
typename P3>
inline
258template <
typename P1,
typename P2,
typename P3>
inline
269template <
typename ObjectPtr,
typename Object,
typename P1,
typename P2,
typename P3>
inline
280template <
typename ObjectPtr,
typename Object,
typename P1,
typename P2,
typename P3>
inline
292#define LASS_PRIM_HAVE_PY_EXPORT_TRAITS_CALLBACK_3
293#ifdef LASS_GUARDIAN_OF_INCLUSION_UTIL_CALLBACK_PYTHON_H
const Callback3< P1, P2, P3 > & makeCallback(const Callback3< P1, P2, P3 > &iCallback)
make a Callback3 from a callback
TSelf & operator=(TSelf &&iOther) noexcept
move assignment operator
void reset()
Reset to empty callback.
Callback3()
Default constructor, construct empty callback.
Callback3(TSelf &&iOther) noexcept
move constructor
Callback3(FunctionType iFunction)
Construct function callback.
void swap(TSelf &iOther)
Swaps the dispatcher of this callback with the dispatcher of another.
Callback3< P1, P2, P3 > makeCallback(void(*iFunction)(P1, P2, P3))
make a Callback3 from a function
Callback3< P1, P2, P3 > makeCallback(ObjectPtr iObject, void(Object::*iMethod)(P1, P2, P3))
make a Callback3 from a object and method
bool isEmpty() const
Returns true if no callback dispatcher is assigned to this object.
TSelf & operator=(const TSelf &iOther)
assignment operator
void operator()(typename util::CallTraits< P1 >::TParam iP1, typename util::CallTraits< P2 >::TParam iP2, typename util::CallTraits< P3 >::TParam iP3) const
THE operator.
bool operator!() const
return this->isEmpty()
Callback3(ObjectPtr iObject, Method iMethod)
Construct object/method callback.
bool operator==(const TSelf &iOther) const
return true if two callbacks call the same function/method, NEEDS RTTI!
bool operator!=(const Callback3< P1, P2, P3 > &iA, const Callback3< P1, P2, P3 > &iB)
return true if two callbacks are different
Callback3(const TSelf &iOther)
copy constructor
Callback3< P1, P2, P3 > makeCallback(ObjectPtr iObject, void(Object::*iMethod)(P1, P2, P3) const)
make a Callback3 from a object and const method
general utility, debug facilities, ...
Library for Assembled Shared Sources.