I can`t cope with the following situation:
class someName
{ public:
vector<compound_objectNS::Compound_object*> loadObjectsFromFile(char* fileName);
}
namespace compound_objectNS
{ class Compound_object {here goes it`s defenition}.
}
I get error from isense: “vector is not a template”
What I am doing wrong?
Help me please! Thanks in advance.
You need to
#include <vector>before usingstd::vector<>.