I am trying to hammer out a couple differences between compilers. I use xcode and dev-c++. The use of namespace is different between the two compilers.
In Dev-C++ you may put the following in a .h or .cpp file
#include "globalstuff.h"
using namespace globalstuff.h;
In the...