+ 1
Can we write Template Function signatures in C++ ?
Is there a way to define a Template Function signature. If, yes please share some code
2 Respostas
+ 7
This tutorial shows an example:
http://www.cplusplus.com/doc/oldtutorial/templates/
+ 3
It's clear now. It entirely depends during runtime.
From now on I'd define template functions in header files and include them whenever required.
Thank you sir. (John Wells)