// cotaskmem.h // // WinDirStat - Directory Statistics // Copyright (C) 2003-2005 Bernhard Seifert // Copyright (C) 2004-2017 WinDirStat Team (windirstat.net) // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation; either version 2 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // // This general purpose header is published under GPL with // the friendly permission of D'accord (www.daccord.net). // // 08.09.1998 - JR // #ifndef __WDS_COTASKMEM_H__ #define __WDS_COTASKMEM_H__ #pragma once // return type for 'CCoTaskMem::operator ->' is not a UDT or reference to a UDT. Will produce errors if applied using infix notation // // CCoTaskMem<>. Some Windows APIs return memory which must be freed with CoTaskMemFree(). // This template does that in its destructor. // template class CCoTaskMem { // construction public: CCoTaskMem( T lp = 0 ) { p = lp; } ~CCoTaskMem() { if( p ) ::CoTaskMemFree( p ); } operator T() { return p; } T& operator*() { _ASSERTE( p != NULL ); return p; } //The assert on operator& usually indicates a bug. If this is really //what is needed, however, take the address of the p member explicitly. T* operator&() { _ASSERTE(NULL == p); return &p; } T operator->() { _ASSERTE(NULL != p); return p; } T operator= ( T lp ) { if(NULL != p) ::CoTaskMemFree(p); p = lp; return p;} #if _MSC_VER>1020 bool operator!() { return (NULL == p); } #else BOOL operator!() { return (NULL == p) ? TRUE : FALSE; } #endif private: CCoTaskMem(const CCoTaskMem&); // operator not allowed for CCoTaskMem T operator= ( const CCoTaskMem& lp ); // operator not allowed for CCoTaskMem T p; }; #endif // __WDS_COTASKMEM_H__