#include "gdcmFileHelper.h"
#include "gdcmFile.h"
#include "vtkGdcmReader.h"
#include "gdcmDebug.h"
#include "gdcmCommon.h"
#include <vtkObjectFactory.h>
#include <vtkImageData.h>
#include <vtkPointData.h>
#include <vtkLookupTable.h>
Include dependency graph for vtkGdcmReader.cxx:
Go to the source code of this file.
Functions | |
vtkCxxRevisionMacro (vtkGdcmReader,"$Revision: 1.85 $") vtkStandardNewMacro(vtkGdcmReader) vtkGdcmReader |
|
Definition at line 72 of file vtkGdcmReader.cxx. References gdcm::LD_ALL. 00072 : 1.85 $") 00073 vtkStandardNewMacro(vtkGdcmReader) 00074 00075 //----------------------------------------------------------------------------- 00076 // Constructor / Destructor 00077 vtkGdcmReader::vtkGdcmReader() 00078 { 00079 this->LookupTable = NULL; 00080 this->AllowLookupTable = false; 00081 this->AllowLightChecking = false; 00082 this->LoadMode = gdcm::LD_ALL; // Load everything (possible values : 00083 // - LD_NOSEQ, 00084 // - LD_NOSHADOW, 00085 // - LD_NOSHADOWSEQ) 00086 this->CoherentFileList = 0; 00087 this->UserFunction = 0; 00088 00089 this->OwnFile=true; 00090 this->Execution=false; 00091 }
|