#include "Ltdic.h"
static L_BOOL LDicomIOD::Exists(pIOD)
pDICOMIOD pIOD; |
pointer to a DICOMIOD structure |
Determines whether the pointer to the structure is valid.
Parameter |
Description |
pIOD |
Pointer to a DICOMIOD structure. |
TRUE |
pIOD is a valid pointer. |
FALSE |
pIOD is NULL. |
Required DLLs and Libraries
LTDIC For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application |
Win32, x64
This example checks an IOD pointer.
L_INT LDicomIOD_ExistsExample()
{
pDICOMIOD pIOD;
pIOD = LDicomIOD::FindClass( CLASS_CT_IMAGE_STORAGE);
if (LDicomIOD::Exists(pIOD) == FALSE)
{
::MessageBox(NULL, TEXT("The IOD does not exist"), TEXT("Notice"), MB_OK);
}
return DICOM_SUCCESS;
}
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET