66#ifndef LASS_GUARDIAN_OF_INCLUSION_UTIL_CALLBACK_R_1_H
67#define LASS_GUARDIAN_OF_INCLUSION_UTIL_CALLBACK_R_1_H
102 typedef SharedPtr< impl::DispatcherR1<R, P1> > TDispatcherPtr;
114 template <
typename FunctionType>
116 dispatcher_(new impl::DispatcherR1Function<R, P1, FunctionType>(iFunction))
122 template <
typename ObjectPtr,
typename Method>
124 dispatcher_(new impl::DispatcherR1Method<R, P1, 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)
const
168 LASS_THROW_EX(EmptyCallback,
"You've tried to call an empty CallbackR1. Can't return a value.");
170 return dispatcher_->call(iP1);
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>
248template <
typename R,
typename P1>
inline
259template <
typename R,
typename P1>
inline
270template <
typename ObjectPtr,
typename Object,
typename R,
typename P1>
inline
281template <
typename ObjectPtr,
typename Object,
typename R,
typename P1>
inline
293#define LASS_PRIM_HAVE_PY_EXPORT_TRAITS_CALLBACK_R1
294#ifdef LASS_GUARDIAN_OF_INCLUSION_UTIL_CALLBACK_PYTHON_H
bool operator==(const TSelf &iOther) const
return true if two callbacks call the same function/method, NEEDS RTTI!
CallbackR1< R, P1 > makeCallback(ObjectPtr iObject, R(Object::*iMethod)(P1))
make a CallbackR1 from a object and method
CallbackR1(ObjectPtr iObject, Method iMethod)
Construct object/method callback.
bool operator!() const
return this->isEmpty()
bool isEmpty() const
Returns true if no callback dispatcher is assigned to this object.
CallbackR1(const TSelf &iOther)
copy constructor
void reset()
Reset to empty callback.
TSelf & operator=(TSelf &&iOther) noexcept
assignment operator
const CallbackR1< R, P1 > & makeCallback(const CallbackR1< R, P1 > &iCallback)
make a CallbackR1 from a function
void swap(TSelf &iOther)
Swaps the dispatcher of this callback with the dispatcher of another.
bool operator!=(const CallbackR1< R, P1 > &iA, const CallbackR1< R, P1 > &iB)
return true if two callbacks are different
R operator()(typename util::CallTraits< P1 >::TParam iP1) const
THE operator.
CallbackR1(FunctionType iFunction)
Construct function callback.
CallbackR1(TSelf &&iOther) noexcept
move constructor
TSelf & operator=(const TSelf &iOther)
assignment operator
CallbackR1< R, P1 > makeCallback(ObjectPtr iObject, R(Object::*iMethod)(P1) const)
make a CallbackR1 from a object and const method
CallbackR1()
Default constructor, construct empty callback.
CallbackR1< R, P1 > makeCallback(R(*iFunction)(P1))
make a CallbackR1 from a function
general utility, debug facilities, ...
Library for Assembled Shared Sources.