vote up 1 vote down star

Modern ATL/MFC applications now have access to a new shared pointer class called CAutoPtr, and associated containers (CAutoPtrArray, CAutoPtrList, etc.).

Does the CAutoPtr class implement reference counting?

flag

2 Answers

vote up 1 vote down

The documentation for http://msdn.microsoft.com/en-us/library/txda4x5t(VS.80).aspx

From reading this it looks like it tries to provides the same functionality as std::auto_ptr i.e. It uses ownership semantics. Only one CAutoPtr object holds the pointer and assignment transfers ownership from one CAutoPtr object to another.

link|flag
vote up 3 vote down check

Having checked the CAutoPtr source, no, reference counting is not supported. Using boost::shared_ptr instead if this ability is required.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.