Dears
I created a list class as
list<string> mylist
then added data
mylist.push_back("A");
mylist.push_back("B");
mylist.push_back("C-VIP");
mylist.push_back("D-VIP");
Now, I would like to create another list for keeping track of the
address of certain entries in the mylist class such as:
list<whatever??> myptr;
I would like myptr to have the addresses of the VIP entries above. Is
that possible?
How?
Thank You
HAOB BOY
