libcamera/include/libcamera/internal/device_enumerator_sysfs.h
Milan Zamazal e2cace52d5 libcamera: includes: Remove unused includes
The includes that are not used can be removed.

Signed-off-by: Milan Zamazal <mzamazal@redhat.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2024-09-02 22:44:38 +03:00

29 lines
497 B
C++

/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
* Copyright (C) 2019, Google Inc.
*
* sysfs-based device enumerator
*/
#pragma once
#include <string>
#include "libcamera/internal/device_enumerator.h"
class MediaDevice;
namespace libcamera {
class DeviceEnumeratorSysfs final : public DeviceEnumerator
{
public:
int init();
int enumerate();
private:
int populateMediaDevice(MediaDevice *media);
std::string lookupDeviceNode(int major, int minor);
};
} /* namespace libcamera */