Hi,

I'm trying to pass pointers to member functions around in my code.

The test with pointers to non-member function works fine:
Code:
Code:

void callOut( void (*callback)() )
{
	callback();
}

void testOut()
{
	cout << "testOut hier" << endl;
}

int main(int argc, char **argv)
{
	callOut( &testOut
...