DMRITool  v0.1.1-139-g860d86b4
Diffusion MRI Tool
utlITKConceptChecking.h
Go to the documentation of this file.
1 
11 #ifndef __utlITKConceptChecking_h
12 #define __utlITKConceptChecking_h
13 
14 #include <itkConceptChecking.h>
15 
16 namespace itk
17 {
18 
19 namespace Detail
20 {
21 }
22 
23 namespace Concept
24 {
25 
26 template< int D1, int D2 >
27 struct SameInteger
28  {
29  struct Constraints
30  {
31  typedef Detail::UniqueType_int< D1 > DT1;
32  typedef Detail::UniqueType_int< D2 > DT2;
33  void constraints()
34  {
35  DT1 a = DT2();
36 
37  Detail::IgnoreUnusedVariable(a);
38  }
39  };
40  itkConceptConstraintsMacro();
41  };
42 
43 
44 }
45 
46 }
47 
48 
49 #endif