|
list<type> how can I make type be a pointer?
I need a linked list of items, but they have to be pointers, the items need to exist in other places, and they need to be placed in the list after the fact, I can't just copy them into the list then change everything else to access the memory address within the pointer.
I tried:
list<*type> but that does not work.
|