SpiecsEngine
 
Loading...
Searching...
No Matches

◆ DELEGATE_FIVE_PARAM

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

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

Definition at line 198 of file DelegateBasic.h.

198#define DELEGATE_FIVE_PARAM(name, p0, p1, p2, p3, p4) \
199 class Delegate##name : public Spices::Delegate_Basic<##p0, ##p1, ##p2, ##p3, ##p4> \
200 { \
201 public: \
202 Delegate##name() : Spices::Delegate_Basic<##p0, ##p1, ##p2, ##p3, ##p4>() {} \
203 virtual ~Delegate##name() = default; \
204 };