I have a pointer to a vector that contains instances of class Test:

Code:
vector<Test*>* testVec;
If I do this:

Code:
Test* one = new Test();
tectVec->push_back(one);
this crashes. What do I need to do to declare the dynamic memory so this works?

Thanks!