delegates icon indicating copy to clipboard operation
delegates copied to clipboard

small delegate implementation

Results 5 delegates issues
Sort by recently updated
recently updated
newest added

I am not sure if this was intentional but the new implementation requires that the type of the class be part of the template type for member functions. This was...

Does this work on Windows? Has it been tested with MSVC++?

Following on from test and example code, `s.registerDelegate(d)` will fail if `d` is not a **free function**. ``` void test() { // Free function works fine // auto d =...

Would it be possible to use these delegates with lambdas? It does not seem to have support for this at the moment but I am hoping that it won't be...

The code for const function delegates causes a compilation error in VC++ 2013: ``` template class Delegate : public BaseDelegate { typedef BaseDelegate Base; public: Delegate(void* callee, typename Base::Pointer2Function function)...