summaryrefslogtreecommitdiff
path: root/include/linux/rkisp1-config.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/rkisp1-config.h')
0 files changed, 0 insertions, 0 deletions
ers'>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* 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__ */