Hello,

Is there a way to have:
QString function_name = foo;

call_user_func(function_name, 10);

with somewhere in the codes:

void foo(int);

This feature exists in php

Thanks!