Classe CComPtr
Uma classe de ponteiro SMART para gerenciar COM ponteiros de interface.
template<
class T
>
class CComPtr
Parâmetros
- T
Uma interface COM especificando o tipo de ponteiro para ser armazenado.
Comentários
Usa o ATLCComPtr e CComQIPtr para gerenciar COM ponteiros de interface.Ambos são derivados de CComPtrBase e ambos executam contagem de referência automático.
The CComPtr and CComQIPtr classes podem ajudar a eliminar vazamentos de memória, realizando a contagem de referência automático.As seguintes funções tanto para executam as mesmas operações lógicas; Entretanto, observe como a segunda versão pode ser menos propensa usando o CComPtr classe:
// Error-checking routine that performs manual lifetime management
// of a COM IErrorInfo object
HRESULT CheckComError_Manual()
{
HRESULT hr;
CComBSTR bstrDescription;
CComBSTR bstrSource;
CComBSTR bstrHelpFile;
IErrorInfo* pErrInfo = NULL; // naked COM interface pointer
hr = ::GetErrorInfo(0, &pErrInfo);
if(hr != S_OK)
return hr;
hr = pErrInfo->GetDescription(&bstrDescription);
if(FAILED(hr))
{
pErrInfo->Release(); // must release interface pointer before returning
return hr;
}
hr = pErrInfo->GetSource(&bstrSource);
if(FAILED(hr))
{
pErrInfo->Release(); // must release interface pointer before returning
return hr;
}
hr = pErrInfo->GetHelpFile(&bstrHelpFile);
if(FAILED(hr))
{
pErrInfo->Release(); // must release interface pointer before returning
return hr;
}
pErrInfo->Release(); // must release interface pointer before returning
return S_OK;
}
// Error-checking routine that performs automatic lifetime management
// of a COM IErrorInfo object through a CComPtr smart pointer object
HRESULT CheckComError_SmartPtr()
{
HRESULT hr;
CComBSTR bstrDescription;
CComBSTR bstrSource;
CComBSTR bstrHelpFile;
CComPtr<IErrorInfo> pErrInfo;
hr = ::GetErrorInfo(0, &pErrInfo);
if(hr != S_OK)
return hr;
hr = pErrInfo->GetDescription(&bstrDescription);
if(FAILED(hr))
return hr;
hr = pErrInfo->GetSource(&bstrSource);
if(FAILED(hr))
return hr;
hr = pErrInfo->GetHelpFile(&bstrHelpFile);
if(FAILED(hr))
return hr;
return S_OK;
} // CComPtr will auto-release underlying IErrorInfo interface pointer as needed
Em compilações de depurar, vincule atlsd.lib para rastreamento de código.
Requisitos
Cabeçalho: atlbase.h