I'm getting a strange compile error with getline. My question is if you make a statement like:
getline(is, a.lastName, ',');
can you revert back to:
getline(is, a.country);
Or in other words, once you set a delimiter, are you bound by that delimiter for the rest of that method?