#include "ltdic.h"
L_BOOL LDicomAssociate::IsImplementClass(L_VOID)
Determines whether setting the Implementation Class is enabled for the DICOM Associate.
Value | Meaning |
---|---|
TRUE | Setting the Implementation Class is enabled. |
FALSE | Setting the Implementation Class is disabled. |
If setting the Implementation Class is enabled, the name may be retrieved using LDicomAssociate::GetImplementClass, or set using LDicomAssociate::SetImplementClass.
Required DLLs and Libraries
Win32, x64
L_INT LDicomAssociate_IsImplementClassExample(LDicomAssociate *m_pDicomAssociate)
{
L_INT nRet;
CString szUID;
L_TCHAR szImplementClass[PDU_MAX_UID_SIZE+1];
//...Assume associate object has been created
//is implement enabled?
if (m_pDicomAssociate->IsImplementClass())
{
//disable it
//display old value
szUID = TEXT("Implement Class Disabled:");
m_pDicomAssociate->GetImplementClass(szImplementClass, PDU_MAX_UID_SIZE+1);
szUID +=szImplementClass;
AfxMessageBox(szUID);
nRet = m_pDicomAssociate->SetImplementClass( FALSE, (L_TCHAR *)(LPCTSTR)szUID);
if(nRet != DICOM_SUCCESS)
return nRet;
}
else
{
//enable it
m_pDicomAssociate->SetImplementClass( TRUE, UID_RT_DOSE_STORAGE);
szUID = TEXT("Implement Class Enabled: ");
m_pDicomAssociate->GetImplementClass(szImplementClass, PDU_MAX_UID_SIZE+1);
szUID +=szImplementClass;
AfxMessageBox(szUID);
}
return DICOM_SUCCESS;
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document