SpiecsEngine
 
Loading...
Searching...
No Matches

◆ DELEGATE_FOUR_PARAM

#define DELEGATE_FOUR_PARAM ( name,
p0,
p1,
p2,
p3 )
Value:
class Delegate##name : public Spices::Delegate_Basic<##p0, ##p1, ##p2, ##p3> \
{ \
public: \
Delegate##name() : Spices::Delegate_Basic<##p0, ##p1, ##p2, ##p3>() {} \
virtual ~Delegate##name() = default; \
};
Basic Class of Delegate. Instance inherited from it and use delegate feature.

Use this macro to instance a Delegate Class. Four Parameter Specific.

Definition at line 186 of file DelegateBasic.h.

186#define DELEGATE_FOUR_PARAM(name, p0, p1, p2, p3) \
187 class Delegate##name : public Spices::Delegate_Basic<##p0, ##p1, ##p2, ##p3> \
188 { \
189 public: \
190 Delegate##name() : Spices::Delegate_Basic<##p0, ##p1, ##p2, ##p3>() {} \
191 virtual ~Delegate##name() = default; \
192 };