summaryrefslogtreecommitdiff
path: root/src/apps/lc-compliance/environment.h
blob: 0debbcce7150c17b43b48800316ddc5fdd176913 (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: GPL-2.0-or-later */
/*
 * Copyright (C) 2021, Collabora Ltd.
 *
 * environment.h - Common environment for tests
 */

#pragma once

#include <libcamera/libcamera.h>

class Environment
{
public:
	static Environment *get();

	void setup(libcamera::CameraManager *cm, std::string cameraId);

	const std::string &cameraId() const { return cameraId_; }
	libcamera::CameraManager *cm() const { return cm_; }

private:
	Environment() = default;

	std::string cameraId_;
	libcamera::CameraManager *cm_;
};