Out of curiosity, does it support function pointers?

g_signal_connect(obj, "sig", G_CALLBACK(some_function), NULL);
GCallback cb = &some_function;
sigc::mem_fun<void>(*this, &TheClass::some_function);


You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.