2019-12-29 23:14:37 -05:00
|
|
|
#include "PLHandle.h"
|
|
|
|
|
|
|
|
|
|
#include "MemoryManager.h"
|
|
|
|
|
|
|
|
|
|
void THandleBase::Dispose()
|
|
|
|
|
{
|
|
|
|
|
if (m_hdl)
|
|
|
|
|
PortabilityLayer::MemoryManager::GetInstance()->ReleaseHandle(m_hdl);
|
2020-01-01 20:24:46 -05:00
|
|
|
|
|
|
|
|
m_hdl = nullptr;
|
2019-12-29 23:14:37 -05:00
|
|
|
}
|