30 #ifndef __CLAW_CONDITIONAL_HPP__
31 #define __CLAW_CONDITIONAL_HPP__
49 template<
bool Cond,
typename ThenPart,
typename ElsePart>
56 template<
typename ThenPart,
typename ElsePart>
57 struct if_then_else<true, ThenPart, ElsePart>
69 template<
typename ThenPart,
typename ElsePart>
70 struct if_then_else<false, ThenPart, ElsePart>
81 #endif // __CLAW_CONDITIONAL_HPP__