Merge pull request #4885 from lioncash/control-ref
ControlReference: Add missing virtual destructor
This commit is contained in:
commit
2cad67952d
|
@ -52,6 +52,8 @@ ControlReference::ControlReference() : range(1), m_parsed_expression(nullptr)
|
|||
{
|
||||
}
|
||||
|
||||
ControlReference::~ControlReference() = default;
|
||||
|
||||
InputReference::InputReference() : ControlReference()
|
||||
{
|
||||
}
|
||||
|
|
|
@ -24,6 +24,7 @@ class ControlReference
|
|||
public:
|
||||
static bool InputGateOn();
|
||||
|
||||
virtual ~ControlReference();
|
||||
virtual ControlState State(const ControlState state = 0) = 0;
|
||||
virtual ciface::Core::Device::Control* Detect(const unsigned int ms,
|
||||
ciface::Core::Device* const device) = 0;
|
||||
|
|
Loading…
Reference in New Issue