How is a string vector array declared using a Form application ?

This seems to work for int in a Form Application:
Code:
std::vector<int> Value(10);
But if you change int to string in the same example the compiler says that
'std::vector' : class has no constructors