Sprout/sprout/utility/enabler_if.hpp

24 lines
435 B
C++
Raw Normal View History

2012-01-12 05:11:46 +00:00
#ifndef SPROUT_UTILITY_ENABLER_IF_HPP
#define SPROUT_UTILITY_ENABLER_IF_HPP
#include <type_traits>
#include <sprout/config.hpp>
namespace sprout {
//
// enabler_t
// enabler
//
typedef void* enabler_t;
extern enabler_t enabler;
//
// enabler_if
//
template<bool C>
class enabler_if
: public std::enable_if<C, enabler_t&>
{};
} // namespace sprout
#endif // #ifndef SPROUT_UTILITY_ENABLER_IF_HPP