#include <qx/meta/type_traits.h>
#include <memory>
Go to the source code of this file.
|
template<class Y , class X > |
Y * | qx::rtti_cast (X &value) |
| Returns Y* if X or element_type of X is inherited from Y, otherwise nullptr. More...
|
|
template<class Y , class X > |
Y * | qx::rtti_cast (X *pointer) |
| Returns Y* if X is inherited from Y, otherwise nullptr. More...
|
|
- Author
- Khrapov
- Date
- 9.09.2021
- Copyright
- © Nick Khrapov, 2021. All right reserved.
Definition in file rtti_cast.h.
◆ rtti_cast() [1/2]
template<class Y , class X >
Y* qx::rtti_cast |
( |
X & |
value | ) |
|
Returns Y* if X or element_type of X is inherited from Y, otherwise nullptr.
Pointer class should contain QX_RTTI_CLASS
- Template Parameters
-
Y | - type to cast to |
X | - smart pointer type or some class to test type |
- Parameters
-
value | - smart pointer object or some class to test object |
- Return values
-
- | Y* if X or element_type of X is inherited from Y, otherwise nullptr |
Definition at line 35 of file rtti_cast.h.
◆ rtti_cast() [2/2]
template<class Y , class X >
Y* qx::rtti_cast |
( |
X * |
pointer | ) |
|
Returns Y* if X is inherited from Y, otherwise nullptr.
Pointer class should contain QX_RTTI_CLASS
- Template Parameters
-
Y | - type to cast to |
X | - type to cast from |
- Parameters
-
- Return values
-
- | Y* if X is inherited from pointer class, otherwise nullptr |
Definition at line 64 of file rtti_cast.h.