mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
23 lines
435 B
C++
23 lines
435 B
C++
#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
|