I've got a
std::vector<std::vector<char>> and want to fill a std::vector<string> with its content.
I just can't get my head into thinking how to access the inner vector of and put the chars into a string vector.
Maybe I'm wrong, but I think a std::vector<char> is like a string.
So it should not be hard to do and I'm just stuck somewhere in my mind.
I've seen this: vector<string> or vector< vector<char> >? but it didn't got me far.
Thanks for your help.