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

#include <libcamera/formats.h>

#include <pybind11/pybind11.h>

#include "py_main.h"

namespace py = pybind11;

class PyFormats
{
};

void init_py_formats_generated(py::module& m)
{
	py::class_<PyFormats>(m, "formats")
${formats}
	;
}