Quote Originally Posted by Bob Davis
You also need to observe the fact that string is declared in the std namespace. Add the following to your .h and .cpp files:

Code:
using std::string;
Preferable not to do that in header files, but you might do it in .cpp files.