Does 'auto' type assignments of a pointer in c++11 require '*'?

Given my variable being a pointer, if I assign it to a variable of "auto" type, do I specify the "*" ? std::vector<MyClass> *getVector(); //returns populated vector //... std::vector<MyC...