Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cotaskmem.h « common - github.com/windirstat/windirstat.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9de1af6f17f2cac2b5d6c76fa3ac4397e259544b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
// cotaskmem.h
//
// WinDirStat - Directory Statistics
// Copyright (C) 2003-2005 Bernhard Seifert
// Copyright (C) 2004-2016 WinDirStat team (windirstat.info)
//
// 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<char *>::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 T>
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<T>&); // operator not allowed for CCoTaskMem
    T operator= ( const CCoTaskMem<T>& lp ); // operator not allowed for CCoTaskMem

    T p;
};

#endif // __WDS_COTASKMEM_H__