Smart List classes






4.40/5 (8 votes)
Wrapper classes for MFC list classes the extend their functionality
Introduction
This article presents a number of list classes that encapsulate the MFC list classes. This code is in use in production code and has been fully tested. But, should any users out there find any bugs or improvements, please send them to me.
The code is absolutely free and can be used as you see fit, but just leave my e-mail address in the code. Enjoy.
The classes
There are two template classes and one normal class defined here.
CMyList (template)
This class is a wrapper for theCList
MFC template class. It adds extra functionality and allows its member items to serialise themselves properly (important for schema versioning).
CMyTypedPtrList (template)
This class is a wrapper for theCTypedPtrList
MFC template class. The items pointed to will be properly deleted thus causing no memory leaks. Use the list just like you would a CObList
. For example...
CMyTypedPtrList<CYourItem> list1(true); list1.AddHead(new CYourItem()); list1.RemoveAll(); // no memory leak!
CMyObList
This class is a wrapper for theCObList
MFC class. The items pointed to will be properly deleted thus causing no memory leaks.
Updated
This article was updated April 6, 2000 to include the updates as detailed by Andreas Müller.