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