Tagged Questions
The cautoptr tag has no wiki summary.
1
vote
4answers
1k views
No copy constructor available or copy constructor is declared 'explicit'
Could somebody please explain why I'm getting a compile error here - error C2558: class 'std::auto_ptr<_Ty>' : no copy constructor available or copy constructor is declared 'explicit'
#include ...
1
vote
3answers
752 views
Difference between ATL CAutoPtr and STL std::auto_ptr?
I'm writing some code in MFC and I want to use auto pointers. I've come across two different classes that look like they do the same thing: CAutoPtr and std::auto_ptr What are people's thoughts about ...
1
vote
2answers
317 views
Does the CAutoPtr class implement reference counting?
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 ...
0
votes
1answer
348 views
AutoPtr in C++/CLI mixed mode
I have a C++/CLI wrapper around native .lib and .h files. I use the AutoPtr class pretty extensively in the wrapper class to manage the unmanaged objects I create for wrapping. I have hit a ...