summaryrefslogtreecommitdiff
path: root/src/qcam/assets/feathericons/briefcase.svg
blob: e3af05060fd21e4212fff26923aadb273b2ccd18 (plain)
1
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-briefcase"><rect x="2" y="7" width="20" height="14" rx="2" ry="2"></rect><path d="M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16"></path></svg>
19' href='#n19'>19 20
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
 * Copyright (C) 2021, Collabora Ltd.
 *
 * environment.cpp - Common environment for tests
 */

#include "environment.h"

Environment *Environment::get()
{
	static Environment instance;
	return &instance;
}

void Environment::setup(CameraManager *cm, std::string cameraId)
{
	cm_ = cm;
	cameraId_ = cameraId;
}