qxLib
Functions
rtti_cast.h File Reference
#include <qx/meta/type_traits.h>
#include <memory>

Go to the source code of this file.

Functions

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...
 

Detailed Description

Author
Khrapov
Date
9.09.2021

Definition in file rtti_cast.h.

Function Documentation

◆ 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
pointer- raw pointer
Return values
-Y* if X is inherited from pointer class, otherwise nullptr

Definition at line 64 of file rtti_cast.h.