cgv
Loading...
Searching...
No Matches
is_abstract.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_abstract
12
{
13
static
const
bool
value = std::is_abstract<T>::value;
14
};
15
16
}
17
}
18
}
cgv
the cgv namespace
Definition
print.h:11
cgv::type::cond::is_abstract
template condition returning, whether the first argument is a base class of the second argument
Definition
is_abstract.h:12
cgv
type
cond
is_abstract.h
Generated by
1.9.8