SpiecsEngine
 
Loading...
Searching...
No Matches

◆ DELEGATE_EIGHT_PARAM

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

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

Definition at line 234 of file DelegateBasic.h.

234#define DELEGATE_EIGHT_PARAM(name, p0, p1, p2, p3, p4, p5, p6, p7) \
235 class Delegate##name : public Spices::Delegate_Basic<##p0, ##p1, ##p2, ##p3, ##p4, ##p5, ##p6, ##p7> \
236 { \
237 public: \
238 Delegate##name() : Spices::Delegate_Basic<##p0, ##p1, ##p2, ##p3, ##p4, ##p5, ##p6, ##p7>() {} \
239 virtual ~Delegate##name() = default; \
240 };