Zum Beispiel:
Code: Select all
template
void run_func(/* type of argument???? */ value) {
Func(value);
}
Code: Select all
auto function_runner = &run_func;
Code: Select all
template
void run_func(/* type of argument???? */ value) {
Func(value);
}
Code: Select all
auto function_runner = &run_func;