cgv
Loading...
Searching...
No Matches
is_enum.h
1#pragma once
2
3#include <type_traits>
4
5namespace cgv {
6 namespace type {
7 namespace cond {
8
10template <typename T>
11struct is_enum
12{
13 static const bool value = std::is_enum<T>::value;
14};
15
16 }
17 }
18}
the cgv namespace
Definition print.h:11
template condition returning, whether the given type is an enum type
Definition is_enum.h:12