cs-midi/AH/Containers/CRTP.hpp

6 lines
185 B
C++

#pragma once
/// Helper for the Curiously Recurring Template Pattern.
#define CRTP(Derived) (*static_cast<Derived *>(this))
#define CRTP_INST(Derived, el) (static_cast<Derived &>(el))