How do I concatenate two std::vectors?
std::vector
I would use the insert function, something like:
vector a, b; //fill with data b.insert(b.end(), a.begin(), a.end());