LDicomAssociate::GetVersion
#include "ltdic.h"
L_UINT16 LDicomAssociate::GetVersion(L_VOID)
Returns the version of the DICOM Associate.
Returns
The version of the DICOM Associate.
Comments
The default value is 1.
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 |
See Also
Functions: |
|
Topics: |
Example
{
//m_pDicomAssociate is a member variable declared as follows:
// 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("Version[%d]", uVersion);
AfxMessageBox(strMsg);
//set the version
m_pDicomAssociate->SetVersion(99);
uVersion = m_pDicomAssociate->GetVersion();
strMsg.Format("Version[%d]", uVersion);
AfxMessageBox(strMsg);
//Free associate
delete m_pDicomAssociate;
}