Hi All,
I have code that uses namespaces, a few of them and I am having some confusion in my brain.
If I have something like:
#include <vector>
protected:
vector<registeredObject> mRegistryList;
The compiler complains that vector has 'no type'
Can't I just do this:
#include <vector>
protected:
std::vector<registeredObject> mRegistryList;
or do I need to do:
using namespace std;
#include <vector>
protected:
std::vector<registeredObject> mRegistryList;
What is the proper method for using multiple namespaces, etc?