summaryrefslogtreecommitdiff
path: root/src/libcamera/include/device_enumerator_sysfs.h
blob: 8d3adc9118ba20c15edac5a7ee1ab554cdde5774 (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
/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
 * Copyright (C) 2019, Google Inc.
 *
 * device_enumerator_sysfs.h - sysfs-based device enumerator
 */
#ifndef __LIBCAMERA_DEVICE_ENUMERATOR_SYSFS_H__
#define __LIBCAMERA_DEVICE_ENUMERATOR_SYSFS_H__

#include <string>

#include "device_enumerator.h"

namespace libcamera {

class DeviceEnumeratorSysfs final : public DeviceEnumerator
{
public:
	int init();
	int enumerate();

private:
	std::string lookupDeviceNode(int major, int minor);
};

} /* namespace libcamera */

#endif /* __LIBCAMERA_DEVICE_ENUMERATOR_SYSFS_H__ */