Files
external_libcamera/src/libcamera/include/control_validator.h
Laurent Pinchart e89c2b2295 libcamera: controls: Index ControlList by unsigned int
In preparation for serialization, index the ControlList by unsigned int.
This will allow deserializing a ControlList without requiring external
information.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
2019-11-20 21:47:33 +02:00

28 lines
525 B
C++

/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
* Copyright (C) 2019, Google Inc.
*
* control_validator.h - Control validator
*/
#ifndef __LIBCAMERA_CONTROL_VALIDATOR_H__
#define __LIBCAMERA_CONTROL_VALIDATOR_H__
#include <string>
namespace libcamera {
class ControlId;
class ControlValidator
{
public:
virtual ~ControlValidator() {}
virtual const std::string &name() const = 0;
virtual bool validate(unsigned int id) const = 0;
};
} /* namespace libcamera */
#endif /* __LIBCAMERA_CONTROL_VALIDATOR_H__ */