mirror of
https://git.libcamera.org/libcamera/libcamera.git
synced 2025-07-13 23:39:44 +03:00
With the internal headers now in include/libcamera/internal/, we may have identically named headers in include/libcamera/. Their header guards would clash. Rename the header guards of internal headers to prevent any issue. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
32 lines
706 B
C++
32 lines
706 B
C++
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
/*
|
|
* Copyright (C) 2019, Google Inc.
|
|
*
|
|
* device_enumerator_sysfs.h - sysfs-based device enumerator
|
|
*/
|
|
#ifndef __LIBCAMERA_INTERNAL_DEVICE_ENUMERATOR_SYSFS_H__
|
|
#define __LIBCAMERA_INTERNAL_DEVICE_ENUMERATOR_SYSFS_H__
|
|
|
|
#include <memory>
|
|
#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 */
|
|
|
|
#endif /* __LIBCAMERA_INTERNAL_DEVICE_ENUMERATOR_SYSFS_H__ */
|