Go to the documentation of this file.
30 #ifndef __CLAW_IS_BASE_OF_HPP__
31 #define __CLAW_IS_BASE_OF_HPP__
48 template<
typename Base,
typename Derived>
55 static char check( Base* );
56 static long check( ... );
61 result = (
sizeof(check( m_d )) ==
sizeof(
char) )
68 #endif // __CLAW_IS_BASE_OF_HPP__