Update documentation

Although, most of the Windows handles may be duplicated with
DuplicateHandle(), this requires knowledge of the processes, desired
access and what not. The dplhandle<> supports only trivial duplication.

Hence win_handle is not a child of dplhandle<>, but handle<> instead.

Signed-off-by: Simon Rozman <simon@rozman.si>
This commit is contained in:
Simon Rozman 2022-02-10 12:12:25 +01:00
parent 2493f3790e
commit 29a9d1d69f

View File

@ -859,7 +859,7 @@ namespace winstd
const T handle<T, INVAL>::invalid = INVAL;
///
/// Base abstract template class to support object handle keeping for objects that support handle duplication
/// Base abstract template class to support object handle keeping for objects that support trivial handle duplication
///
template <class T, T INVAL>
class dplhandle : public handle<T, INVAL>