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