while (notFinishedReading)
{
in_stream >> name;
in_stream >> combo;
in_stream >> op1;
in_stream >> op2;
in_stream >> op3;
in_stream >> op4;
// Do something with the data
}
Moschops
Practically a Master Poster
620 posts since Sep 2008
Reputation Points: 258
Solved Threads: 117
or
while( in_stream >> name >> combo >> op1 >> op2 >> op3 >> op4)
{
// do something with the data
}
Ancient Dragon
Retired & Loving It
30,050 posts since Aug 2005
Reputation Points: 5,662
Solved Threads: 2,343