8 #ifndef CPPCMS_UTIL_MEM_BIND_H 9 #define CPPCMS_UTIL_MEM_BIND_H 16 template<
typename C,
typename P,
typename ... P1>
18 void (C::*member)(P1...);
20 void operator()(P1... args)
const { ((*object).*member)(args...); }
30 template<
typename C,
typename P,
typename ...P1>
31 details::binderX<C,P,P1...>
mem_bind(
void (C::*mem)(P1...),P obj)
33 details::binderX<C,P,P1...> tmp={mem,obj};
This is the namespace where all CppCMS functionality is placed.
Definition: application.h:19
details::binderX< C, P, P1... > mem_bind(void(C::*mem)(P1...), P obj)
Definition: mem_bind.h:31