The base class of polymorphic classes is required to declare a destructor. Several of these are empty, and can thus be declared as defaulted. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Umang Jain <email@uajain.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
27 lines
560 B
C++
27 lines
560 B
C++
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
/*
|
|
* Copyright (C) 2019, Google Inc.
|
|
*
|
|
* control_validator.h - Control validator
|
|
*/
|
|
#ifndef __LIBCAMERA_INTERNAL_CONTROL_VALIDATOR_H__
|
|
#define __LIBCAMERA_INTERNAL_CONTROL_VALIDATOR_H__
|
|
|
|
#include <string>
|
|
|
|
namespace libcamera {
|
|
|
|
class ControlId;
|
|
|
|
class ControlValidator
|
|
{
|
|
public:
|
|
virtual ~ControlValidator() = default;
|
|
|
|
virtual const std::string &name() const = 0;
|
|
virtual bool validate(unsigned int id) const = 0;
|
|
};
|
|
|
|
} /* namespace libcamera */
|
|
|
|
#endif /* __LIBCAMERA_INTERNAL_CONTROL_VALIDATOR_H__ */
|