up vote 1 down vote favorite
share [g+] share [fb]

Is there a way to convert a vector to a pointer to a pointer (ptr-to-ptr).

Background: I have an arbitrary length set of data stored in a vector. But I have a library of algorithms that accept ptr-to-ptr (for image array access). I need to get the data from my vector to a ptr-to-ptr. How is that possible?

link|improve this question
feedback

2 Answers

up vote 9 down vote accepted

If you have a function void f(int **array) and a vector std::vector<int*> vect you can call f like this: f(&vect[0]). Is this what you were looking for?

link|improve this answer
Actually, yes. That is what I'm looking for. I didn't think to try that. thanks! – tim Nov 6 '09 at 5:31
+1 for figuring out what the OP wanted oO – Matthieu M. Nov 6 '09 at 7:33
feedback

Well, you can convert a vector to a const pointer-to-array using the c_str() member function.

EDIT: Oops! I meant &vec[0]. It's been a long day.

link|improve this answer
I think this only applies to strings.. – int3 Nov 6 '09 at 5:25
vector doesn't have a c_str() – Naveen Nov 6 '09 at 5:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.