i have concluded the simplest way to implement something with my current code would involve something like this:
however the compiler doesnt like this and gives a ton of errors on the insert statement. Anyone see the problem?
thanks
Code:
vector<char*[10]> q;
vector<char*[10]>::iterator i;
char* a[10] = blah;
q.insert(i, 1, a);
thanks