Go to the source code of this file.
#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 63 of file ActivityRegistry.h.
#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 68 of file ActivityRegistry.h.
#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 73 of file ActivityRegistry.h.
#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 78 of file ActivityRegistry.h.