SpiecsEngine
 
Loading...
Searching...
No Matches

◆ DELEGATE_NONE_PARAM

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

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

Definition at line 138 of file DelegateBasic.h.

138#define DELEGATE_NONE_PARAM(name) \
139 class Delegate##name : public Spices::Delegate_Basic<> \
140 { \
141 public: \
142 Delegate##name() : Spices::Delegate_Basic<>() {} \
143 virtual ~Delegate##name() = default; \
144 };