tip for auto_ptr with C++ 1. how to test whether auto_pointer is null? if (!myPointer.get()) { // do not dereference here } 2. how to pass auto_pointer ? std::auto_ptr<class> ptr_class = std::auto_ptr( new class ); Share this:Click to share on Twitter (Opens in new window)Click to share on Facebook (Opens in new window) Related Posted on 2015-06-10 8:09 PM by andrew Comment 📂This entry was posted in C/C++
2014-07-23 andrew [개발/VC++] WebBrowser Control 이벤트 연결 – C++IT/개발 2011/02/10 12:12 [개발/VC++] WebBrowser Control 이벤트 연결 - C++ WebBrowser Control IDispatch IWebBr...
2014-07-09 andrew Window Traybar 크기 알아 내기. HWND h_wnd = ::FindWindow("Shell_TrayWnd", NULL); if(h_wnd != NULL){ CRect r; ...