23#if !defined(ITK_LEGACY_REMOVE)
62template <
bool V,
typename TType =
void>
66template <
typename TType>
67struct EnableIfC<true, TType>
81template <
bool V,
typename TType =
void>
85template <
typename TType>
86struct DisableIfC<false, TType>
119template <
class TCondition,
class TType =
void>
120struct EnableIf :
public EnableIfC<TCondition::Value, TType>
150template <
class TCondition,
class TType =
void>
151struct DisableIf :
public DisableIfC<TCondition::Value, TType>
161using mpl::DisableIfC;
167# error Use C++ 11 std::enable_if directly
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....