SpiecsEngine
 
Loading...
Searching...
No Matches

◆ DELEGATE_SIX_PARAM

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

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

Definition at line 210 of file DelegateBasic.h.

210#define DELEGATE_SIX_PARAM(name, p0, p1, p2, p3, p4, p5) \
211 class Delegate##name : public Spices::Delegate_Basic<##p0, ##p1, ##p2, ##p3, ##p4, ##p5> \
212 { \
213 public: \
214 Delegate##name() : Spices::Delegate_Basic<##p0, ##p1, ##p2, ##p3, ##p4, ##p5>() {} \
215 virtual ~Delegate##name() = default; \
216 };