23 Apr
2005
23 Apr
'05
4:20 p.m.
This may be a good solution. The only problem is that find(...) will be looking for identical pointers instead of identical objects. Easy to fix though.
Easiest to fix using indirect_iterators (http://www.boost.org/libs/iterator/doc/indirect_iterator.html) rather than raw container iterators...
This is *exactly* what I need! Thank you! Bo