Container for wxArrayString Topic is solved

If you are using the main C++ distribution of wxWidgets, Feel free to ask any question related to wxWidgets development here. This means questions regarding to C++ and wxWidgets, not compile problems.
Post Reply
Ruro
Experienced Solver
Experienced Solver
Posts: 83
Joined: Wed May 23, 2007 2:20 pm
Location: Verona, Italy

Container for wxArrayString

Post by Ruro »

Hi,

I was wondering if there is a way to have a container for multiple wxArrayString.

I'm usually work with simple array and matrix, but for the new project, I'm trying to have a more grow-able structure.

Can someone point me to some example or documentation for a possible container?

Thanks you very much for the help.

Nicola.
User avatar
doublemax
Moderator
Moderator
Posts: 19114
Joined: Fri Apr 21, 2006 8:03 pm
Location: $FCE2

Re: Container for wxArrayString

Post by doublemax »

std::vector (or wxVector if you want to stick to wx classes). But using the std containers is recommended now.
Use the source, Luke!
Ruro
Experienced Solver
Experienced Solver
Posts: 83
Joined: Wed May 23, 2007 2:20 pm
Location: Verona, Italy

Re: Container for wxArrayString

Post by Ruro »

Hi Doublemax,

thanks for the fast reply!

I will try it and accept the answer after the test.

Best Regards,

Nicola.
Post Reply