What's the correct/recommended way to include a file? I'm getting trouble with inclusion (VS2005 compiler...).
I know the correct way is this:
#include "source.cpp"
or this:
#include <source.cpp>
Could # include "source.cpp"
cause problems (added space after #)? Some of my team mates use that way and we are getting an unsolved problem.
The point I'm including a source file is that I'm developing under and IDE which doesn't allows to define functions in it's editor due to they'll become local functions.