In my progressions of learning C++, i came up to a problem when using push_front to lists (of strings), in a vector. One way is to do something like this:
In your snippet at the bottom: IIRC vectors do not have a push_front() method. returnVector is an array of vectors of lists of strings, and the [0] gets a specific vector.
Hm, nevermind - that actually worked as expected. I now battle some out-of-range problems, but I think I can manage that one way or another.
Thanks for your help!