#include <backend_cast.h>
|
static Sub & | Cast (Base &base) |
|
static const Sub & | Cast (const Base &base) |
|
static Sub * | Cast (Base *base) |
|
static const Sub * | Cast (const Base *base) |
|
template<class Sub, class Base>
class impeller::BackendCast< Sub, Base >
Definition at line 11 of file backend_cast.h.
◆ Cast() [1/4]
template<class Sub , class Base >
Definition at line 13 of file backend_cast.h.
13 {
return reinterpret_cast<Sub&
>(base); }
◆ Cast() [2/4]
template<class Sub , class Base >
Definition at line 19 of file backend_cast.h.
19 {
return reinterpret_cast<Sub*
>(base); }
◆ Cast() [3/4]
template<class Sub , class Base >
Definition at line 15 of file backend_cast.h.
16 return reinterpret_cast<const Sub&
>(base);
◆ Cast() [4/4]
template<class Sub , class Base >
Definition at line 21 of file backend_cast.h.
22 return reinterpret_cast<const Sub*
>(base);
The documentation for this class was generated from the following file: