My guess is you need to scope it to the std namespace.
Try std::wstring
~psault
edit: probably error in terminology, I should say you probably want to use the std namespace scope for declaring the variable.
Also, firedraco is telling you to use C++ headers instead of depricated C ones.
Last edited on
You need to include string and vector not string.h and vector.h.
Compiler take both. Need using namespace std;
Thank's
Jim