Hi,
I want to use a vector in a class located in “MyProject/Classes/MyClass”. So I say:
#include <vector>
and when I compile and build the project, everything is fine up to here. But when I declare a dynamic array, say,
vector<int> v
in MyClass, it is still unknown to the compiler and "vector" is reported as a new type…
Where is the problem??
Thanks,