14 lines
256 B
C++
14 lines
256 B
C++
#pragma once
|
|
|
|
// a helper class for implementing static casting to a derived class using the
|
|
// curiously recurring template pattern
|
|
|
|
template <class Derived>
|
|
struct Crtp
|
|
{
|
|
Derived& derived()
|
|
{
|
|
return *static_cast<Derived*>(this);
|
|
}
|
|
};
|