My Project
is_base_of.hpp
Go to the documentation of this file.
1 
28 #ifndef BSL_IS_BASE_OF_HPP
29 #define BSL_IS_BASE_OF_HPP
30 
31 #include "bool_constant.hpp"
32 #include "remove_cv.hpp" // Needed for PRQA
33 
34 namespace bsl
35 {
53  template<typename T, typename U>
54  class is_base_of final : // --
55  public bool_constant<__is_base_of(T, U)> // PRQA S 3702
56  {};
57 }
58 
59 #endif
If the provided type is an array type (taking into account const qualifications), provides the member...
Definition: integral_constant.hpp:45
If the provided type T is a base of type U, provides the member constant value equal to true....
Definition: is_base_of.hpp:54