Use this macro to instance a Delegate Class. Two Parameter Specific.
162#define DELEGATE_TWO_PARAM(name, p0, p1) \
163 class Delegate##name : public Spices::Delegate_Basic<##p0, ##p1> \
164 { \
165 public: \
166 Delegate##name() : Spices::Delegate_Basic<##p0, ##p1>() {} \
167 virtual ~Delegate##name() = default; \
168 };