-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
AutoHandle.h
60 lines (45 loc) · 1.42 KB
/
AutoHandle.h
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
/*
Module : AutoHandle.h
Purpose: Defines the interface for a class which supports auto closing of a handle via CloseHandle
Created: PJN / 10-01-2013
Copyright (c) 2013 by PJ Naughter (Web: www.naughter.com, Email: [email protected])
All rights reserved.
Copyright / Usage Details:
You are allowed to include the source code in any product (commercial, shareware, freeware or otherwise)
when your product is released in binary form. You are allowed to modify the source code in any way you want
except you cannot modify the copyright details at the top of each module. If you want to distribute source
code with your application, then you are only allowed to distribute versions released by the author. This is
to maintain a single distribution point for the source code.
*/
///////////////////////// Macros / Structs etc ////////////////////////////////
#pragma once
#ifndef __AUTOHANDLE_H__
#define __AUTOHANDLE_H__
///////////////////////// Classes /////////////////////////////////////////////
class CAutoHandle
{
public:
//Constructors / Destructors
CAutoHandle() : m_hHandle(INVALID_HANDLE_VALUE)
{
}
explicit CAutoHandle(HANDLE hHandle) : m_hHandle(hHandle)
{
}
~CAutoHandle()
{
if (m_hHandle != INVALID_HANDLE_VALUE)
{
CloseHandle(m_hHandle);
m_hHandle = INVALID_HANDLE_VALUE;
}
}
//Methods
operator HANDLE()
{
return m_hHandle;
}
//Member variables
HANDLE m_hHandle;
};
#endif //__AUTOHANDLE_H__