LDicomIOD::Exists

#include "Ltdic.h"

static L_BOOL LDicomIOD::Exists(pIOD)

Determines whether the pointer to the structure is valid.

Parameters

pDICOMIOD pIOD

Pointer to a DICOMIOD structure.

Returns

Value Meaning
TRUE pIOD is a valid pointer.
FALSE pIOD is NULL.

Required DLLs and Libraries

Platforms

Win32, x64

See Also

Functions

Topics

Example

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; 
} 

Help Version 20.0.2020.4.2
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2020 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS DICOM C++ Class Library Help