Hi,
Assume that we want to define a set of template function separately & then use them in other files, by calling their header.
1. Shoud we put function body (both define & declare) in header file as well. My current code works this way. But when I put those body in the *.cpp file then it is compiled & linked without error. But crashes run time!
2. I need to use some of those function in other file as well. But if I put function body in *.h files then I recieve mutliple definition error when linking (I already have one #ifnedef block covering all mu header code)
Any suggestion/Alternative?
Thanks in advance,
Reza