Go to the source code of this file.
◆ AR_WATCH_USING_METHOD_0
#define AR_WATCH_USING_METHOD_0 |
( |
|
method | ) |
|
Value:template <class TClass, class TMethod> \
void
method(TClass* iObject, TMethod iMethod) { \
method(std::bind(std::mem_fn(iMethod), iObject)); \
}
Definition at line 64 of file ActivityRegistry.h.
◆ AR_WATCH_USING_METHOD_1
#define AR_WATCH_USING_METHOD_1 |
( |
|
method | ) |
|
Value:template <class TClass, class TMethod> \
void
method(TClass* iObject, TMethod iMethod) { \
method(std::bind(std::mem_fn(iMethod), iObject, std::placeholders::_1)); \
}
Definition at line 69 of file ActivityRegistry.h.
◆ AR_WATCH_USING_METHOD_2
#define AR_WATCH_USING_METHOD_2 |
( |
|
method | ) |
|
Value:template <class TClass, class TMethod> \
void
method(TClass* iObject, TMethod iMethod) { \
method(std::bind(std::mem_fn(iMethod), iObject, std::placeholders::_1, std::placeholders::_2)); \
}
Definition at line 74 of file ActivityRegistry.h.
◆ AR_WATCH_USING_METHOD_3
#define AR_WATCH_USING_METHOD_3 |
( |
|
method | ) |
|
Value:template <class TClass, class TMethod> \
void
method(TClass* iObject, TMethod iMethod) { \
method(std::bind( \
std::mem_fn(iMethod), iObject, std::placeholders::_1, std::placeholders::_2, std::placeholders::_3)); \
}
Definition at line 79 of file ActivityRegistry.h.