2 #include "handle_private.h"
11 Handle::Handle(const Handle &other):
14 priv->handle = other.priv->handle;
17 Handle &Handle::operator=(const Handle &other)
19 priv->handle = other.priv->handle;
28 Handle::operator bool() const
30 return priv->handle!=INVALID_HANDLE_VALUE;
34 Handle::Private::Private():
35 handle(INVALID_HANDLE_VALUE)
38 Handle::Private &Handle::Private::operator=(PlatformHandle h)