Subj : Re: List To : borland.public.cpp.borlandcpp From : maeder Date : Sun Jun 13 2004 11:15 am "toto" writes: > i want a ungraphical list,. i would like to make a collection of object and > navigate in this collection. Something like the vector class template of the Standard C++ Library? E.g.: #include class Product { }; typedef std::vector Products; You may also want to have a look at the list class template of the Standard Library. [The above is code conforming to Standard C++; all versions of Borland C++ predate that standard. I don't remember if we had to qualify vector with std:: in any version of Borland C++, and if the header to #include was or .] .