SpiecsEngine
 
Loading...
Searching...
No Matches

◆ DELEGATE_SEVEN_PARAM

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

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

Definition at line 222 of file DelegateBasic.h.

222#define DELEGATE_SEVEN_PARAM(name, p0, p1, p2, p3, p4, p5, p6) \
223 class Delegate##name : public Spices::Delegate_Basic<##p0, ##p1, ##p2, ##p3, ##p4, ##p5, ##p6> \
224 { \
225 public: \
226 Delegate##name() : Spices::Delegate_Basic<##p0, ##p1, ##p2, ##p3, ##p4, ##p5, ##p6>() {} \
227 virtual ~Delegate##name() = default; \
228 };