#ifndef EFL_EINA_LOGICAL_HH #define EFL_EINA_LOGICAL_HH #include namespace efl { namespace eina { namespace _mpl { template struct or_; template <> struct or_<> : std::integral_constant {}; template struct or_ : std::integral_constant {}; template struct or_ : std::integral_constant::value> {}; template struct and_; template <> struct and_<> : std::integral_constant {}; template struct and_ : std::integral_constant {}; template struct and_ : std::integral_constant::value> {}; } } } #endif