Quote Originally Posted by Zlatomir View Post
That usually happens when you define functions in an header file and include that header in multiple other files (you end-up with that functions having multiple definitions), if this is the case: move the definitions in a cpp file of that class
Thanks that worked...onemore hint, that i discovered, is that global variables should be defined in .cpp file and then define them as extern in a lets say, share.h header to use them all over the project.

cheerts