66#ifndef LASS_GUARDIAN_OF_INCLUSION_UTIL_CALLBACK_R_5_H
67#define LASS_GUARDIAN_OF_INCLUSION_UTIL_CALLBACK_R_5_H
95 typename P1,
typename P2,
typename P3,
typename P4,
typename P5
102 typedef SharedPtr< impl::DispatcherR5<R, P1, P2, P3, P4, P5> > TDispatcherPtr;
114 template <
typename FunctionType>
116 dispatcher_(new impl::DispatcherR5Function<R, P1, P2, P3, P4, P5, FunctionType>(iFunction))
122 template <
typename ObjectPtr,
typename Method>
124 dispatcher_(new impl::DispatcherR5Method<R, P1, P2, P3, P4, P5, ObjectPtr, Method>(iObject, iMethod))
131 dispatcher_(iOther.dispatcher_)
138 dispatcher_(std::move(iOther.dispatcher_))
158 dispatcher_ = std::move(iOther.dispatcher_);
164 R
operator()(
typename util::CallTraits<P1>::TParam iP1,
typename util::CallTraits<P2>::TParam iP2,
typename util::CallTraits<P3>::TParam iP3,
typename util::CallTraits<P4>::TParam iP4,
typename util::CallTraits<P5>::TParam iP5)
const
168 LASS_THROW_EX(EmptyCallback,
"You've tried to call an empty CallbackR5. Can't return a value.");
170 return dispatcher_->call(iP1, iP2, iP3, iP4, iP5);
187 return dispatcher_.isEmpty();
194 return dispatcher_.isEmpty();
199 explicit operator bool()
const
201 return !dispatcher_.isEmpty();
208 dispatcher_.swap(iOther.dispatcher_);
216 if (dispatcher_ == iOther.dispatcher_)
220 return dispatcher_ && dispatcher_->isEquivalent(iOther.dispatcher_.get());
223 const TDispatcherPtr& dispatcher()
const
230 TDispatcherPtr dispatcher_;
238template<
typename R,
typename P1,
typename P2,
typename P3,
typename P4,
typename P5>
239inline bool operator!=(
const CallbackR5<R, P1, P2, P3, P4, P5>& iA,
const CallbackR5<R, P1, P2, P3, P4, P5>& iB)
248template <
typename R,
typename P1,
typename P2,
typename P3,
typename P4,
typename P5>
inline
259template <
typename R,
typename P1,
typename P2,
typename P3,
typename P4,
typename P5>
inline
260const CallbackR5<R, P1, P2, P3, P4, P5>&
makeCallback(
const CallbackR5<R, P1, P2, P3, P4, P5>& iCallback)
270template <
typename ObjectPtr,
typename Object,
typename R,
typename P1,
typename P2,
typename P3,
typename P4,
typename P5>
inline
271CallbackR5<R, P1, P2, P3, P4, P5> makeCallback(ObjectPtr iObject, R (Object::*iMethod)(P1, P2, P3, P4, P5))
281template <
typename ObjectPtr,
typename Object,
typename R,
typename P1,
typename P2,
typename P3,
typename P4,
typename P5>
inline
282CallbackR5<R, P1, P2, P3, P4, P5> makeCallback(ObjectPtr iObject, R (Object::*iMethod)(P1, P2, P3, P4, P5)
const)
293#define LASS_PRIM_HAVE_PY_EXPORT_TRAITS_CALLBACK_R5
294#ifdef LASS_GUARDIAN_OF_INCLUSION_UTIL_CALLBACK_PYTHON_H
const CallbackR5< R, P1, P2, P3, P4, P5 > & makeCallback(const CallbackR5< R, P1, P2, P3, P4, P5 > &iCallback)
make a CallbackR5 from a function
bool operator!() const
return this->isEmpty()
bool operator!=(const CallbackR5< R, P1, P2, P3, P4, P5 > &iA, const CallbackR5< R, P1, P2, P3, P4, P5 > &iB)
return true if two callbacks are different
CallbackR5(ObjectPtr iObject, Method iMethod)
Construct object/method callback.
CallbackR5(const TSelf &iOther)
copy constructor
CallbackR5< R, P1, P2, P3, P4, P5 > makeCallback(ObjectPtr iObject, R(Object::*iMethod)(P1, P2, P3, P4, P5) const)
make a CallbackR5 from a object and const method
R operator()(typename util::CallTraits< P1 >::TParam iP1, typename util::CallTraits< P2 >::TParam iP2, typename util::CallTraits< P3 >::TParam iP3, typename util::CallTraits< P4 >::TParam iP4, typename util::CallTraits< P5 >::TParam iP5) const
THE operator.
TSelf & operator=(const TSelf &iOther)
assignment operator
bool operator==(const TSelf &iOther) const
return true if two callbacks call the same function/method, NEEDS RTTI!
CallbackR5()
Default constructor, construct empty callback.
bool isEmpty() const
Returns true if no callback dispatcher is assigned to this object.
void swap(TSelf &iOther)
Swaps the dispatcher of this callback with the dispatcher of another.
CallbackR5(TSelf &&iOther) noexcept
move constructor
CallbackR5< R, P1, P2, P3, P4, P5 > makeCallback(ObjectPtr iObject, R(Object::*iMethod)(P1, P2, P3, P4, P5))
make a CallbackR5 from a object and method
TSelf & operator=(TSelf &&iOther) noexcept
assignment operator
void reset()
Reset to empty callback.
CallbackR5< R, P1, P2, P3, P4, P5 > makeCallback(R(*iFunction)(P1, P2, P3, P4, P5))
make a CallbackR5 from a function
CallbackR5(FunctionType iFunction)
Construct function callback.
general utility, debug facilities, ...
Library for Assembled Shared Sources.