GDCM 3.0.24
vtkGDCMTesting.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: GDCM (Grassroots DICOM). A DICOM library
4
5 Copyright (c) 2006-2011 Mathieu Malaterre
6 All rights reserved.
7 See Copyright.txt or http://gdcm.sourceforge.net/Copyright.html for details.
8
9 This software is distributed WITHOUT ANY WARRANTY; without even
10 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
11 PURPOSE. See the above copyright notice for more information.
12
13=========================================================================*/
14// .NAME vtkGDCMTesting - GDCM Testing
15// .SECTION Description
16// GDCM Testing
17
18// .SECTION See Also
19// vtkTesting
20
21#ifndef VTKGDCMTESTING_H
22#define VTKGDCMTESTING_H
23
24#include "vtkgdcmModule.h"
25#include "vtkObject.h"
26
27class VTKGDCM_EXPORT vtkGDCMTesting : public vtkObject
28{
29public:
32 void PrintSelf(ostream& os, vtkIndent indent);
33
34 static const char *GetVTKDataRoot();
35 static const char *GetGDCMDataRoot();
36
37//BTX
38 typedef const char* const (*MD5MetaImagesType)[3];
39 static const char * const * GetMD5MetaImage(unsigned int file);
40//ETX
41 static unsigned int GetNumberOfMD5MetaImages();
42
43 static const char * GetMHDMD5FromFile(const char *filepath);
44 static const char * GetRAWMD5FromFile(const char *filepath);
45
46protected:
49
50private:
51 vtkGDCMTesting(const vtkGDCMTesting&); // Not implemented.
52 void operator=(const vtkGDCMTesting&); // Not implemented.
53};
54
55#endif
Definition vtkGDCMTesting.h:28
static const char * GetMHDMD5FromFile(const char *filepath)
static unsigned int GetNumberOfMD5MetaImages()
static const char *const * GetMD5MetaImage(unsigned int file)
static const char * GetVTKDataRoot()
static const char * GetRAWMD5FromFile(const char *filepath)
static const char * GetGDCMDataRoot()
void PrintSelf(ostream &os, vtkIndent indent)
static vtkGDCMTesting * New()
vtkTypeMacro(vtkGDCMTesting, vtkObject)