Take a look at boost type traits library, in particular the function_traits
template provides such functionality out of the box. If you cannot use boost, just download the code and read the sources for some insight into how it is done.
Note that the functionality is based on types, not concrete functions, so you might need to add some extra code there.
After doing some small tests, this might not be what you really need, and if it is the 'some extra code' will be non-trivial. The problem is that the function_traits
template works on function signatures and not actual function pointers, so the problem has changed from 'get the return type from a function pointer' to 'get the signature from a function pointer' which is probably the hardest part there.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…