I\'ve approached this strange ( for me ) effect in VS 2010. Can anyone smart shed some light on it please.
//Header.h #include namespace MySpa
You are missing "namespace" in your using. It should be like this:
#include "Header.h" using namespace MySpace; const std::string SOME_CONST_STRING = "CONST_STRING_VALUE";