8
votes
3answers
184 views
What is boost’s shared_ptr(shared_ptr<Y> const & r, T * p) used for?
boost::shared_ptr has an unusual constructor
template<class Y> shared_ptr(shared_ptr<Y> const & r, T * p);
and I am a little puzzled as to what this would be useful for. Basically …
0
votes
0answers
29 views
Why is my code slower using #import “progid:typelib” than using “MFC Class From TypeLib”?
I am writing an automation client in Visual C++ with MFC. If I right-click on my solution » Add » Class, I have the option to select MFC Class From TypeLib. Selecting this option generates …
