2011-12-06, 03:12 PM
You can't pass a string object into open(). You have to use a C style string.
in_file.open(inFilename.c_str());
in_file.open(inFilename.c_str());
