LDicomAssociate::GetVersion

Summary

Returns the version of the DICOM Associate.

Syntax

#include "ltdic.h"

L_UINT16 LDicomAssociate::GetVersion(L_VOID)

Returns

The version of the DICOM Associate.

Comments

The default value is 1.

Required DLLs and Libraries

Platforms

Win32, x64

See Also

Functions

Topics

Example

L_INT LDicomAssociate_GetVersionExample(LDicomAssociate *m_pDicomAssociate) 
{ 
   CString strMsg; 
 
   //create the Associate Class as Request 
   m_pDicomAssociate = new LDicomAssociate(TRUE); 
 
   //set the Associate to the default 
   m_pDicomAssociate->Default(); 
 
   //check the Associate Class version 
   L_UINT16 uVersion = m_pDicomAssociate->GetVersion(); 
 
   strMsg.Format(TEXT("Version[%d]"), uVersion); 
 
   AfxMessageBox(strMsg); 
 
   //set the version 
   m_pDicomAssociate->SetVersion(99); 
 
   uVersion = m_pDicomAssociate->GetVersion(); 
 
   strMsg.Format(TEXT("Version[%d]"), uVersion); 
 
   AfxMessageBox(strMsg); 
 
   //Free associate 
   delete m_pDicomAssociate; 
 
   return DICOM_SUCCESS; 
} 
Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS DICOM C++ Class Library Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.