Mr Stinky
Mr Stinky

Reputation: 891

Standard C++ equivalent to a CTypedPtrList

I'm porting Windows code to Linux and I'm new to C++. Is there a standard C++ library equivalent to CTypedPtrList?

It's currently used in the code to contain some of our classes like so:

CTypedPtrList<CPtrList, OurClass*> variable_name;

Upvotes: 3

Views: 808

Answers (1)

Nemanja Trifunovic
Nemanja Trifunovic

Reputation: 24561

Not exact equivalent, but your best bet is std::list.

Upvotes: 3

Related Questions