summaryrefslogtreecommitdiff
path: root/src/py/libcamera/py_properties_generated.cpp.in
blob: 044b2b2a6aa61fcaf151408a53f2ae3bac44a406 (plain)
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
28
29
30
/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
 * Copyright (C) 2022, Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
 *
 * Python bindings - Auto-generated properties
 *
 * This file is auto-generated. Do not edit.
 */

#include <libcamera/property_ids.h>

#include <pybind11/smart_holder.h>

namespace py = pybind11;

class PyProperties
{
};

class PyDraftProperties
{
};

void init_py_properties_generated(py::module& m)
{
	auto controls = py::class_<PyProperties>(m, "properties");
	auto draft = py::class_<PyDraftProperties>(controls, "draft");

${controls}
}