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