Hi,
I've got a vector of structs populated with the following fields:
double double double double (unsigned int) (unsigned int) string
I want to take each line in that vector (call it OldVec), and
1. transfer it to a new vector of structures
2. add a string identifier at the end of said line.
So I can create a new vector of structures with the above 7 variables and add a string to it. Let's call that NewVec and it would contain:
double double double double (unsigned int) (unsigned int) string string.
How can I do the copy from OldVec to NewVec and insert/append the string (would just be a few characters like "identifier") at the end of the line that's copied over?
Thanks,
TR