Go to the source code of this file.
◆ DETAIL_ControlTargetBase_DEFAULT_METHOD_IMPLEMENTATION
#define DETAIL_ControlTargetBase_DEFAULT_METHOD_IMPLEMENTATION |
◆ make_DummyControlTarget
#define make_DummyControlTarget |
( |
|
Suffix, |
|
|
|
ControlMode |
|
) |
| |
Value: class DummyControlTarget##Suffix : public ControlTargetBase \
{ \
public: \
virtual const std::string& \
getControlMode() const override \
{ \
return ControlMode; \
} \
virtual void \
reset() override \
{ \
} \
virtual bool \
isValid() const override \
{ \
return true; \
} \
DETAIL_ControlTargetBase_DEFAULT_METHOD_IMPLEMENTATION static ControlTargetInfo< \
DummyControlTarget##Suffix> \
GetClassMemberInfo() \
{ \
return ControlTargetInfo<DummyControlTarget##Suffix>{}; \
} \
}
Definition at line 187 of file ControlTargetBase.h.