Products | Support | Send comments on this topic. | Email a link to this topic. | Back to Getting Started | Help Version 18.0.10.23
LEADTOOLS DICOM C++ Class Library Help

LDicomDS::LDicomDS

Show in webframe

#include "Ltdic.h"

L_VOID LDicomDS::LDicomDS(pszPath=NULL)

L_TCHAR * pszPath;

/* character string */

Allocates the memory for the data set and sets the site of the temporary files.

Parameter

Description

pszPath

Character string containing the location of the temporary files. DICOM uses temporary files during the course of creating a file. If this parameter is NULL, the DICOM temporary files are kept in the directory Windows places its own temporary files. If this parameter is not NULL, the temporary files are placed in the specified directory.

Returns

None.

Comments

This function is the constructor for the LDicomDS class.

The allocated memory is freed by calling LDicomDS::~LDicomDS.

To initialize the newly created Data Set to contain elements of a specific class, call LDicomDS::InitDS.

This function must be called before calling either LDicomDS::LoadDS or LDicomDS::InitDS.

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

Platforms

Win32, x64

See Also

Functions:

LDicomDS::~LDicomDS, LDicomDS::InitDS, LDicomDS::LoadDS

Topics:

Working with Data Sets

 

How to Disable the Automatic Loading of the default DICOM IOD Table

Example

This example creates and frees the Data Set.

#define MAKE_IMAGE_PATH(pFileName) TEXT("C:\\Users\\Public\\Documents\\LEADTOOLS Images\\")pFileName
L_INT LDicomDS_LDicomDSExample()
{
   LDicomDS*   pDS;
   pDS = new LDicomDS(MAKE_IMAGE_PATH(TEXT("temp")));
   delete pDS;
   return DICOM_SUCCESS;
}
Products | Support | Contact Us | Copyright Notices
© 2006-2014 All Rights Reserved. LEAD Technologies, Inc.