From: <J.B...@ew...> - 2007-05-29 21:37:40
|
Sunburned Surveyor wrote: > [1] What are we doing in the "std::vector<int> data;"=20 > statement? Perhaps you should start by reading about templates in C++: http://www.cplusplus.com/doc/tutorial/templates.html=20 A std::vector is a general class to store an ordered list of items of = the type between < >. (http://www.sgi.com/tech/stl/) You'll read about iterators there or somewhere else aswell :) Cheers, Johan |